Batch file directory of files in folder

In summary: The only difference I have found is that on W7 the batch file will not create the dirlist.txt file if the current directory is set to "C:\".
  • #1
dingpud
199
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
  • #2
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.
 
  • #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.
 
  • #4
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.
 
  • #5
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
 

1. What is a batch file directory?

A batch file directory is a location on a computer where batch files, also known as batch scripts or .bat files, are stored. These files contain a series of commands that can be executed by the computer's command line interpreter.

2. How can I view the files in a specific folder using a batch file?

To view the files in a specific folder using a batch file, you can use the "dir" command followed by the path of the folder you want to view. For example, "dir C:\Users\Documents" will display all the files in the Documents folder of the Users directory.

3. Can I use a batch file to copy or move files from one folder to another?

Yes, you can use the "copy" or "move" command in a batch file to copy or move files from one folder to another. Just specify the source file or folder and the destination file or folder in the command.

4. How do I create a new folder using a batch file?

To create a new folder using a batch file, you can use the "mkdir" command followed by the name of the new folder. For example, "mkdir NewFolder" will create a new folder named "NewFolder" in the current directory.

5. Is it possible to list only specific types of files in a folder using a batch file?

Yes, you can use the "dir" command with the "*.filetype" syntax to list only files with a specific file type in a folder. For example, "dir *.txt" will list all the text files in the current directory.

Similar threads

  • Programming and Computer Science
Replies
20
Views
494
  • Programming and Computer Science
Replies
11
Views
1K
  • Programming and Computer Science
Replies
2
Views
2K
  • Programming and Computer Science
Replies
11
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
1K
  • Computing and Technology
Replies
22
Views
2K
  • Programming and Computer Science
Replies
8
Views
2K
  • Computing and Technology
Replies
13
Views
2K
Replies
2
Views
2K
  • Programming and Computer Science
Replies
2
Views
27K
Back
Top