New Reply

Batch file directory of files in folder

 
Share Thread Thread Tools
Jul27-11, 02:25 PM   #1
 

Batch file directory of files in folder


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,
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Bird's playlist could signal mental strengths and weaknesses
>> Minus environment, patterns still emerge: Computational study tracks E. coli cells' regulatory mechanisms
>> Bacterium uses natural 'thermometer' to trigger diarrheal disease, scientists find
Jul27-11, 08:38 PM   #2
 
Quote by dingpud View Post
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.
Aug1-11, 10:00 AM   #3
 
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.
Aug1-11, 01:36 PM   #4
 
Recognitions:
Gold Membership Gold Member
Science Advisor Science Advisor

Batch file directory of files in folder


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.
Aug1-11, 04:57 PM   #5
 
Well, I found the original batch file... went in to 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
New Reply
Thread Tools


Similar Threads for: Batch file directory of files in folder
Thread Forum Replies
A new computer virus attacks a folder consisting of 200 files Set Theory, Logic, Probability, Statistics 3
using a batch file to create NAMELIST input file for FORTRAN Programming & Comp Sci 0
My network directory file synch batch file thing :) Computing & Technology 2
more batch files Computing & Technology 0
Creating Batch Files Computing & Technology 10