Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript React Router Basics Navigating and Nesting Routes Displaying Clean URLs

Difference between "/filename", "./filename", "filename" ? I am still confused about this..

Difference between "/filename", "./filename", "filename" ? I am still confused about this..

1 Answer

Steven Parker
Steven Parker
229,732 Points

The difference is the directory where the file is located.

  • `/filename' would be located in the file system's top-level directory (the "root")
  • './filename' would be located in the "current" directory (the same one as the program)
  • 'filename' could be anywhere along the "default search path"

When no directory specification is given (the last case), a pre-defined set of directories known as the "default search path" is examined to find the file. The default search path will generally include the current directory.

Got it ! Thanks for the answer. It was very helpful