Forum Discussion
o-mario64
Mar 23, 2023Copper Contributor
Mass Data Entry
My boss is asking me to list all of the subfolders within the subfolders of a parent folder. Is there anyway to list them all by both file path and name (on two separate rows) without having to list ...
Patrick2788
Mar 23, 2023Silver Contributor
You could do this with a few lines in a Windows command prompt. The following will produce the output and open the results in a notepad file. You can then copy/paste to Excel:
dir /s [Your Path] >List.txt
List.txt
- o-mario64Mar 23, 2023Copper Contributor
Thank you, I tried but I don't have access to this program unfortunately because I don't have admin privileges.