I have a folder of media files that are about 1TB big. I want to save the file names and directory structure to a text file for backup and reference. I want to attach a batc
To just save the directory structure and file names:
get-childitem -recurse | select -expand fullname > dirtree.txt