Page 1 of 1

Recursive drive listing

Posted: Tue Feb 08, 2005 4:03 am
by charles
I had a quick look through the forums for the answer to this but couldn't find it. I'd like to get a structured recursive directory listing of a network drive on an XP box and in addition output the files as clickable links so that the list can be circulated.

I'm not even sure how to do the first bit on XP, something combination of tree & dir?

Thanks

Charles

Posted: Wed Feb 09, 2005 12:27 pm
by DataMystic Support
Use this filter:

Code: Select all

|--Input from file(s)
|     [ ] Confirm before processing each file
|     [X] Confirm before processing read/only files
|     [ ] Delete input files after processing
|     Process binary files
|   
|--Remove all
|   
|--Add header [@fullInputFilename\013\010]
|   
+--Merge output to file c:\myfilelist.txt


Files List
----------
C:\*.*
D:\*.*




To generate a clickable link, use this filter:

Code: Select all

|--Input from file(s)
|     [ ] Confirm before processing each file
|     [X] Confirm before processing read/only files
|     [ ] Delete input files after processing
|     Process binary files
|   
|--Remove all
|   
|--Add header [<a href="@fullInputFilename">@fullInputFilename</a> ]
|   
|--Merge into c:\myclickablefilelist.html
|   
|--Add header [<html><body>]
|   
|--Add footer [</body></html>]
|   
+--Output to file(s)
      [ ] Only update date on changed files
      [ ] Keep original file's date and time
      [ ] Append mode
      [ ] Change extension to: .txt
    
Files List
----------
C:\*.*
D:\*.*