Files
codeql/csharp/ql/test/library-tests/utils/FilepathNormalizeTest.expected
2023-10-13 17:07:47 +01:00

11 lines
223 B
Plaintext

| | . |
| ./a/b/c/../d | a/b/d |
| / | / |
| /a/b/../c | /a/c |
| /a/b/c/../../d/ | /a/d |
| a/.. | . |
| a/b/../c | a/c |
| a/b//////c/./d/../e//d// | a/b/c/e/d |
| a/b/c | a/b/c |
| a/b/c/../../../../d/e/../f | ../d/f |