Page 1 of 1 [ 3 posts ] 

codarac
Veteran
Veteran

User avatar

Joined: 28 Oct 2006
Age: 47
Gender: Male
Posts: 780
Location: UK

10 Nov 2007, 2:35 pm

Is there any way to go into, say, Windows Explorer, select a big load of files, and copy and paste their file names into a Word or txt document?

And how about other details, such as creation date and file size?
And how about folders and sub-folders?

And another related q - if you go to add/remove programs via the control panel you can bring up a display of all your programs and their sizes. Is there any way to copy and paste this info into a Word or txt document?

I wonder if I'd need to create a program to do this! I know a bit of C++.
Or can I do it from the Command Prompt?



ahayes
Veteran
Veteran

User avatar

Joined: 2 Dec 2006
Gender: Male
Posts: 9,506

10 Nov 2007, 3:20 pm

look up DOS commands

DIR should give you most of what you are looking for, it's best to pipe it into a text file: dir > textfile.txt the file is created automatically

it'll give you directories, but not subdirectories, you would have to do the navigation yourself in that case



codarac
Veteran
Veteran

User avatar

Joined: 28 Oct 2006
Age: 47
Gender: Male
Posts: 780
Location: UK

10 Nov 2007, 7:28 pm

Cool. Thanks!
That works.