Has anybody found a good directory list printer app?

Former user wrote on 3/10/2018, 8:55 AM

I have searched and maybe just searching wrong, but I have several harddrives that I would like to attache a hard copy list of the files. These are archive drives so only have video, audio, and project files, no system files. I would like to find an app that prints a list of directories and files within. I don't need all of the details. Anybody have any suggestions? Thanks

Comments

Marco. wrote on 3/10/2018, 9:05 AM

For that purpose I use a simple BAT file command:

dir /s > list.txt

It outputs a text list of (sub)folders and files of the folder it is used in.

Save this command line above as something like "list.bat", put it in the folder to be printed and double-click to output the list text file to the same folder.

Former user wrote on 3/10/2018, 9:22 AM

Thanks Marco, that works but there is too much information. I don't need the dates, filesizes, etc.

set wrote on 3/11/2018, 5:41 AM

add /b to remove additional information. so the complete command is:

dir /b /s >list.txt

 

complete command option can be seen by typing /?

dir /?

Setiawan Kartawidjaja
Bandung, West Java, Indonesia (UTC+7 Time Area)

Personal FB | Personal IG | Personal YT Channel
Chungs Video FB | Chungs Video IG | Chungs Video YT Channel
Personal Portfolios YouTube Playlist
Pond5 page: My Stock Footage of Bandung city

 

System 5-2021:
Processor: Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz   2.90 GHz
Video Card1: Intel UHD Graphics 630 (Driver 31.0.101.2127 (Feb 1 2024 Release date))
Video Card2: NVIDIA GeForce RTX 3060 Ti 8GB GDDR6 (Driver Version 551.23 Studio Driver (Jan 24 2024 Release Date))
RAM: 32.0 GB
OS: Windows 10 Pro Version 22H2 OS Build 19045.3693
Drive OS: SSD 240GB
Drive Working: NVMe 1TB
Drive Storage: 4TB+2TB

 

System 2-2018:
ASUS ROG Strix Hero II GL504GM Gaming Laptop
Processor: Intel(R) Core(TM) i7 8750H CPU @2.20GHz 2.21 GHz
Video Card 1: Intel(R) UHD Graphics 630 (Driver 31.0.101.2111)
Video Card 2: NVIDIA GeForce GTX 1060 6GB GDDR5 VRAM (Driver Version 537.58)
RAM: 16GB
OS: Win11 Home 64-bit Version 22H2 OS Build 22621.2428
Storage: M.2 NVMe PCIe 256GB SSD & 2.5" 5400rpm 1TB SSHD

 

* I don't work for VEGAS Creative Software Team. I'm just Voluntary Moderator in this forum.

Former user wrote on 3/12/2018, 11:30 PM

Thanks Set and Marco, I will play with that until I find something else.

 

Musicvid wrote on 4/8/2018, 3:36 PM

You should be able to take list.txt, run it through a simple Word macro, and transform to a comma-delimited CSV that will open in Excel. Then you have unlimited control over formatting, indexing, etc.

Bryan_Cotton wrote on 4/9/2018, 3:22 PM

This is great help. I've been using dir > list.txt then editing out all the extra stuff in word :(