Created
July 22, 2017 16:40
-
-
Save WillieYang/b4f95d8c99f40ba87cbab9ffa48def13 to your computer and use it in GitHub Desktop.
what is the difference between / and ./ and ../ in relative path?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| / | |
| means the root of the current drive; | |
| ./ | |
| means the current directory; | |
| ../ | |
| means the parent of the current directory. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment