How to save file structure to text file?

前端 未结 4 1850
我寻月下人不归
我寻月下人不归 2021-01-15 08:46

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

4条回答
  •  梦毁少年i
    2021-01-15 09:29

    To just save the directory structure and file names:

    get-childitem  -recurse | select -expand fullname > dirtree.txt
    

提交回复
热议问题