List of folder contents

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

Hi

I'm not sue if I'm posting to the correct NG, if not please let me know and
where to post if possible..
My problem is I have a folder with over a 1,000 zip files and need to create
a lsit of the files.

Is there some way to do that?

thanks

Daniel
 
Daniel said:
Hi

I'm not sue if I'm posting to the correct NG, if not please let me know and
where to post if possible..
My problem is I have a folder with over a 1,000 zip files and need to create
a lsit of the files.

Is there some way to do that?

thanks

Daniel

To do it once:
- Click Start / Run / cmd {OK}
- Type these commands:
dir /b /s "c:\Documents and Settings\Daniel\My Documents\ZipFiles" >
c:\dir.txt {Enter}
notepad c:\dir.txt {Enter}

To do it repeatedly:
http://support.microsoft.com/?kbid=321379
 
Daniel said:
Hi

I'm not sue if I'm posting to the correct NG, if not please let me know and
where to post if possible..
My problem is I have a folder with over a 1,000 zip files and need to create
a lsit of the files.

Is there some way to do that?

thanks

Daniel


From the command prompt (Start > Run > Cmd.exe), simply change to
the desired directory and type "dir > filelist.txt" or "dir > lpt1,"
just as you used to do in DOS. Any of the switches for the DIR command
(type "dir /?") will work with this command, if you wish to modify the
output. You can then subsequently edit the resulting text file using
NotePad, WordPad, Word, etc.

Alternatively:

HOW TO Add a Print Directory Feature for Folders in Windows XP
http://support.microsoft.com/?kbid=321379



--

Bruce Chambers

Help us help you:



They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety. -Benjamin Franklin

Many people would rather die than think; in fact, most do. -Bertrand Russell
 
Back
Top