Save a List of Files & Folder Contents Into a Text File with file paths

Save a List of Files & Folder Contents Into a Text File with file paths

On Mac I needed to get the full paths of every file inside a folder with multiple folders inside this folder. To do this open terminal and navigate to your folder. Type this in and you should get a file created with the list

find `pwd` . -type  f > ../files-all.txt

Categories: Category 1