Ubuntu
From your terminal, type the following command:
ls -R1 your/videos > output.txtIf you are unsure of the exact path to the directory your media is in, simply drag the directory into the terminal. This will generate a list of every subdirectory and each file within them. You can find the list in your home directory.
Windows
You will want to move into your media directory with the command line by using cd.
cd c:/your/videosThen generate the list with the following command:
dir /on /b /s > c:/list.txtThe list will be waiting for you on the root of your C drive. Note that you can leave out the /on, /b, or /s if you wish. /on puts the list in alphabetical order. /b leaves the path out of the names and /s includes subdirectories.
There you go, now you can generate a list of your media with either Ubuntu or Windows.
No comments:
Post a Comment