How to save a folder and file list of a ftp server to a text file?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello!
How to save a folder and file list (list of contents) of a ftp server to a
text file?
Best regards,
Dima
+79035093892
 
That largely depends on your FTP client. Commercial FTP clients like
WS-FTP, CuteFTP, and the like have different ways of viewing and/or printing
directory information. What client are you using?

Hal
--
Hal Hostetler, CPBE -- (e-mail address removed)
Senior Engineer/MIS -- MS MVP-Print/Imaging -- WA7BGX
http://www.kvoa.com -- "When News breaks, we fix it!"
KVOA Television, Tucson, AZ. NBC Channel 4
Still Cadillacin' - www.badnewsbluesband.com
 
Thanks Hal for your reply!
I use Windows Explorer to use FTP resources. What FTP client and how should
I use?
Best regards,
Dima
 
With Windows Explorer, these might work:

http://support.microsoft.com/kb/272623/en-us
How to add the print directory feature to Windows Explorer
http://support.microsoft.com/kb/321379/en-us
How to add the Print Directory feature for folders in Windows XP

Hal
--
Hal Hostetler, CPBE -- (e-mail address removed)
Senior Engineer/MIS -- MS MVP-Print/Imaging -- WA7BGX
http://www.kvoa.com -- "When News breaks, we fix it!"
KVOA Television, Tucson, AZ. NBC Channel 4
Still Cadillacin' - www.badnewsbluesband.com
 
Thanks Hal for the links! You are very helpful!
Does the print directory feature print subfolders and their files too?
I will be able to try the print directory feature in 14 hours at home.
How to save a folder contents list to a text file?
Best regards,
Dima
 
I believe you can get subdirectory listings by adding "/s" to the "dir" line
in the prin.bat file:

dir %1 /-p /o:gn > "%temp%\Listing"

should be changed to:

dir %1 /-p /s /o:gn > "%temp%\Listing"

In the line above, "/-p" means "Don't pause between screens", "/s" means
"Displays files in specified directory and all subdirectories", and "/o:gn"
means "List flies in the sorted order Directory first, then filename"

Hal
--
Hal Hostetler, CPBE -- (e-mail address removed)
Senior Engineer/MIS -- MS MVP-Print/Imaging -- WA7BGX
http://www.kvoa.com -- "When News breaks, we fix it!"
KVOA Television, Tucson, AZ. NBC Channel 4
Still Cadillacin' - www.badnewsbluesband.com
 
Hello!
The "Print Directory Listing" does not appear for ftp folders in Windows
Explorer, but to local folders only! How to print FTP Directory Listing?
Best regards,
Dima
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top