Export the list of files on a folder as a csv on Windows 10

 1. open file explorer

2. go to the folder you would like to list the files at

3. on the address bar write "powershell"


and click enter.

4. powershell opens and write the command:

Dir | Export-CSV FILE.CSV

5. A csv file named FILE.CSV will be created on the current directory containing information from all the files on that directory.

Hope it helps someone, sometime. Cheers.





Comments