Looking for a program that will save all my file names

G73S

Senior member
Mar 14, 2012
635
0
0
I have a large collection of videos

Is there a program that will make a text file list of all the files in that videos folder?

That way, if ever I happen to lose the data, I know the names of the movies I have lost.

Example:

Gladiator [2000].avi >>> that's the file name

output:

Gladiator [2000]

like I want a program which would do this in a batch process for the entire folder
 

jolancer

Senior member
Sep 6, 2004
469
0
0
command prompt
Code:
dir /B "C:\path\to\dir\*" > "C:\path\to\example.txt"
 
Last edited:

G73S

Senior member
Mar 14, 2012
635
0
0
command prompt
Code:
dir /B "C:\path\to\dir\*" > "C:\path\to\example.txt"
no matter what way I am typing this it keeps saying cannot find the path specified

are you sue of the above example? also do I need to include the quotations?
 

Chrishuff1

Platinum Member
Jul 25, 2000
2,780
1
71
no matter what way I am typing this it keeps saying cannot find the path specified

are you sue of the above example? also do I need to include the quotations?

Ya, it's correct, that's how I keep track of my movies folder...if you wanted the file sizes and everything you could do:

dir > C: \Test.txt (replace with where you want your txt file to go) I hope you aren't just typing in exactly what he did cause that won't return anything :)
 

Fardringle

Diamond Member
Oct 23, 2000
9,200
765
126
Yes, what jolancer provided works just fine, and yes you need to use the quotation marks. But replace
Code:
"C:\path\to\dir\*"
with the actual path to your movie folder
Code:
(i.e. "C:\users\g73s\documents\movies\*"
and
Code:
"C:\path\to\example.txt"
with the path and file name you want to use to store the list
Code:
(i.e. "C:\movielist.txt").


(The code boxes are to prevent the forums from turning the : and \ symbols into :\)
 
Last edited:

G73S

Senior member
Mar 14, 2012
635
0
0
Yes, what jolancer provided works just fine, and yes you need to use the quotation marks. But replace
Code:
"C:\path\to\dir\*"
with the actual path to your movie folder
Code:
(i.e. "C:\users\g73s\documents\movies\*"
and
Code:
"C:\path\to\example.txt"
with the path and file name you want to use to store the list
Code:
(i.e. "C:\movielist.txt").
(The code boxes are to prevent the forums from turning the : and \ symbols into :\)

WOW!! Thanks a lot man! can't believe it was that easy and didn't require any additional software!

I really appreciate it guys!

Thank you so much
 

Chrishuff1

Platinum Member
Jul 25, 2000
2,780
1
71
Yes, what jolancer provided works just fine, and yes you need to use the quotation marks.

Dude, no you don't. You only need the quotes if there's a space in the path...like:

C: \Documents and Settings then you would need them, but if it's just C: \Movies you don't.