What does "/" , "./", "../" represent while giving path?

33

24

What does "/" , "./", "../" represent while giving path?

Starx

Posted 2010-06-16T11:28:21.253

Reputation: 1 881

Answers

46

Root directory, current working directory, and parent directory, respectively.

Amardeep

Posted 2010-06-16T11:28:21.253

Reputation:

45

The path meanings:

  • / is the root of the current drive;
  • ./ is the current directory;
  • ../ is the parent of the current directory.

Bruce McGee

Posted 2010-06-16T11:28:21.253

Reputation: 551

12

Let's be precise:

"/"is a path which begins with a /, and thus it is an absolute path. Thus, we need to begin in the root of the file system and navigate through the folders given by name, whereas the names are separated by /s (because this is the unix path separator).
Thus, / is the root of the file system with no folders entered after this, and thus, / describes the root of the file system.

./ does not begin with a /, and thus ./ cannot be an absolute file name. Thus, it is a relative file system name. Thus, we need to start with the current working directory and apply the navigation operations which are separated by the path separator again. In this case, the operation is ".", which means: stay in the current folder. (Thus, one has to type ./foo in order to execute foo in the current directory, if . is not in the path-variable). After the "stay in the current folder", nothing further happens, so ./ describe the current working directory.

Given the knowledge that .. means: go to the parent folder, ../ should be easy to deduce and is left as an exercise.

Tetha

Posted 2010-06-16T11:28:21.253

Reputation: 221

8

  • / is the root folder of the filesystem.
  • ./ usually denotes the current folder that your program or script is in, usually the same one with the file you run.
  • ../ denotes the folder above the current one.

BoltClock

Posted 2010-06-16T11:28:21.253

Reputation: 753

4

the slash / is the directory separator. in every directory there are two directories, namely . (current directory) and .. (parent directory)

if a path starts with a slash, it means it's the root of the filesystem. if you omit the slash in the beginning ./ (relative to current directory) is assumed

knittl

Posted 2010-06-16T11:28:21.253

Reputation: 3 452