Could anyone explain the difference between ../ and ./ please.
../system
./system
My understanding is that ../ is the root directory.
But I don't know what ./ means.
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
| |||
feedback
|
| |||||
feedback
|
|
The . and .. are relative directories to your current location. The . is the current directory. eg "this". The .. is the previous directory. eg "this.parent". | |||
|
feedback
|
... which means:
| |||||
feedback
|