ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

Create a file list from multiple folders

<< < (2/4) > >>

Contro:
This?

http://dirhtml.home.comcast.net/~dirhtml/
-rgdot (July 06, 2012, 10:56 PM)
--- End quote ---

I see only give the possibility to choose one folder (and his subfolders). Is it correct ?

I would in F4 the possibility to choose more than one folder.

Best Regards

4wd:
Far less sophisticated, but a quick and easy hack for a recursive text dump of a directory and files:

http://renegademinds.com/TipsTricks/Dumpfileanddirectoryliststotextfiles/tabid/56/Default.aspx

-Renegade (July 07, 2012, 02:31 AM)
--- End quote ---

You'd need a separate batch file for each case and change the dir command in each:

@dir %1 /A-s-h-d /S /on /b > c:\dirListing.txt         ** For sorted by Name with no Folders or System/Hidden files
@dir %1 /A-s-h-d /S /od /tc /b > c:\dirListing.txt    ** For sorted by Creation Date with no Folders or System/Hidden
@dir %1 /A-s-h-d /S /od /tw /b > c:\dirListing.txt    ** For sorted by Last Written, (Modified), with no Folders or System/Hidden

Use /o-n or /o-d to reverse the sort order.

Contro:
I'm not certain I understand all your requirements, but you might take a look at the late Karen Kenworthy's Directory Printer.  It's extremely flexible.  I use it frequently to create CSV files for folders/subfolders content.  It's a VB6 program, so if you're using windows, you prolly have all the necessaries already installed.
-barney (July 07, 2012, 12:57 AM)
--- End quote ---

I think i have the same problem. I can't select only one folder (and its subfolders), but I don't see how to select several folders in differents hard drives.

Best Regards

Contro:
Far less sophisticated, but a quick and easy hack for a recursive text dump of a directory and files:

http://renegademinds.com/TipsTricks/Dumpfileanddirectoryliststotextfiles/tabid/56/Default.aspx

Dump file and directory lists to text files

Need a complete list of files and directories from Windows? Don't feel like typing them manually? Here's the answer...

The following is a batch file that runs under command.exe or cmd.exe, depending upon whether you are using Windows 9x/Me or Windows NT/2000/XP/2003. Copy the file contents then save it in your SendTo directory as getDirListing.bat. In Windows NT/2000/XP/2003 the SendTo directory is in <DRIVE>:\Documents and Settings\<YOUR WINDOWS LOGIN>\SendTo.


--- Code: Text ---@echo Directory and sub-directory file listing dump by RenegadeMinds.com.@echo Visit http://Renegademinds.com for more Windows tips and tricks @echo and free software applications.@echo ==================================================================@echo ==================================================================@echo Save this file as getDirList.bat in your SendTo directory.@echo SendTo is under Documents and Settings in each user's directory.@echo Right-click on any directory in Windows Explorer and choose@echo Send To - getDirList.bat@echo ==================================================================@echo ==================================================================@echo Dumping directory listing to c:\dirListing.txt@echo        (This may take some time for large directory trees.)@REM the /A switch lists all hidden and system files as well.@REM the /S switch lists all subdirectories and their contents.@dir %1 /A /S > c:\dirListing.txt@echo Opening c:\dirListing.txt in Notepad (Close notepad to delete file)@notepad c:\dirListing.txt@echo Deleting c:\dirListing.txt@del c:\dirListing.txt@pause
Right-click on any directory and choose SendTo > getDirListing.bat.

Cheers,

Renegade

--- End quote ---

It goes in the "Send to" menu in your context menu.

But like I said, far less sophisticated. The only real benefit is that it is fast, easy, and you don't need to bother opening any software for it.
-Renegade (July 07, 2012, 02:31 AM)
--- End quote ---

I can't filter ?

I have too many hard drives and some 2 Tb.

Best Regards

Contro:
I would like only files , not shortcuts inside subfolders
only folder and subfolders
and the file names sorted
But all the folders in several hard drives please.

 :-[
Best Regards

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version