How to copy the titles from a list of movies
GWENOLAA
Posted messages
28
Status
Member
-
librequetucrois -
librequetucrois -
Hello, I have over 400 movies on a hard drive and would like to print the titles to give the list to a friend, but I can't do it because it's copying the content of my movies. How can I do this, thank you in advance for your answers.
PS: on Windows 7
PS: on Windows 7
2 answers
-
Hello,
There is a small software that takes care of this: https://www.commentcamarche.net/telecharger/utilitaires/7405-directory-list-print/
Best regards
--
A stranger is a friend we haven't met yet. -
Using batch commands for this:
Start -> All Programs -> Accessories -> Command Prompt
The console window opens.
Go to the desired directory (cd command)
example cd c:\titi\toto\my movies\
redirect the directory output to a file
dir > myfile.txt
In the specified directory, there should be this file containing the list of files in the directory
:)