Skip to content
Advertisement

Printing full path of directories

I am trying to get full paths of folder and print them into a into a file.

JavaScript

I have been using this command to get paths. But they are not proper. Ex. When trying to print path of Documents/Folder/Folder2 comes as Documents/folder2 instead of proper path.

I have tried going over directory using for loop and printing out solution like this:

JavaScript

Advertisement

Answer

How about simply:

JavaScript

It will print all the paths starting with ‘.’

If you want the absolute path try the following:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement