Batch file directory of files in folder

  • Thread starter Thread starter dingpud
  • Start date Start date
  • Tags Tags
    Batch File files
AI Thread Summary
The discussion revolves around the use of a batch file to generate a directory listing in Windows XP and Windows 7. The original command, "dir /s *.* > dirlist.txt," worked well on XP but resulted in a blank file on Windows 7. Users noted that permission issues on the C drive could prevent file creation, suggesting that users should check their permissions or specify a different directory for output. It was highlighted that using the command with spaces around "*.*" made a difference, and specifying a writable path, such as using environment variables for user directories, resolved the issue. Ultimately, the batch file can effectively create a list of files and folders, which can then be exported to Excel for better organization.
dingpud
Messages
198
Reaction score
1
Hello all. I am far from a programmer, but have found a lot of use out of a batch file that I found. The file is as follows:
dir /s*.*>dirlist.txt
This file, typed into a notepad file, then saved as a .bat file has worked perfectly on my XP system. I tried to use in in W7, and it just prints to a blank notepad file. Is something different with W7?

I did, through a Google search, find that when renaming the file from .txt to .bat, I had to use uppercase for the .BAT, but that was an easy fix...

Any suggestions?
Thanks,
 
Technology news on Phys.org
dingpud said:
Hello all. I am far from a programmer, but have found a lot of use out of a batch file that I found. The file is as follows:
dir /s*.*>dirlist.txt
This file, typed into a notepad file, then saved as a .bat file has worked perfectly on my XP system. I tried to use in in W7, and it just prints to a blank notepad file. Is something different with W7?

I did, through a Google search, find that when renaming the file from .txt to .bat, I had to use uppercase for the .BAT, but that was an easy fix...

Any suggestions?
Thanks,

I tried the same thing on my C drive and I got an access denied message. I tried the same thing on a different drive and it worked.

I'm guessing you need to change your permissions for the C drive to allow you to do this on that drive. An easy way to check if you can do this is to open the command prompt and type "dir /s *.* > dirstruc.txt" and if you get the denied message, you'll know that you need to change the permissions.
 
I will try that when I get a chance... Currently when I run the one that I posted, it just gives me a blank notepad file. It use to create the same file listing.txt which had the directory in the notepad file. I do not get any errors when I run it.
 
Are you sure that the txt file is even being created in the first place? If the current directory is set to "C:\", then your command will try to create the txt file within "C:\". I use Vista and on my machine non-administrators don't have permission to create files there. The solution is to specify a place where you are allowed to write, e.g.

Code:
dir /s *.* > C:\Users\InsertYourLoginNameHere\dirlist.txt

or, better still

Code:
dir /s *.* > %HOMEDRIVE%%HOMEPATH%\dirlist.txt

which has the same effect.
 
Well, I found the original batch file... went into edit it, and it seems as though the only difference were the spaces around the *.* This file works exactly like it use to.
dir /s *.* >dirlist.txt
Saved as a batch file will allow me to copy and paste the batch file in a folder, double click on it, then read the .txt file that it creates with a list of all the files, folders, and sub-folders within the folder. I can then export to Excel and get a nice neat list of all the files.
Thanks all. The info about including the directory to write to will help reduce the amount of renaming and copying and pasting that I'll have to do...

EDIT: This works on both XP and W7
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Thread 'Project Documentation'
Trying to package up a small bank account manager project that I have been tempering on for a while. One that is certainly worth something to me. Although I have created methods to whip up quick documents with all fields and properties. I would like something better to reference in order to express the mechanical functions. It is unclear to me about any standardized format for code documentation that exists. I have tried object orientated diagrams with shapes to try and express the...
Back
Top