./
means "current directory" (the directory containing your current file)../
means "directory containing the current directory", and it can be used more than once: ../../
means "the directory containing the directory that contains the current one" ./
is ../
is ../../
is