home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / vol1 / pc_sd138.zip / SCRIPTS.ZIP / MGET.FTP < prev    next >
Text File  |  1997-01-04  |  1KB  |  34 lines

  1. ;This script demonstrates downloading all of the files in a
  2. ;remote ftp server directory in binary mode(thats what the
  3. ;TYPE I does).  To use this script modify the CONN
  4. ;statement to reflect the ftp server you want to connect to.
  5. ;Then modify the USER and PASS statements with your username
  6. ;and password.  Finally, specify the full path to the remote
  7. ;directory with the files in it followed by the full path to
  8. ;the local directory for the new files in the MGET statement.
  9. ;All of the settings have been commented out with the ;.  If
  10. ;you need any of them just remove the ; and set the setting to
  11. ;whatever is appropriate.  Please consult the help file
  12. ;sdftp.hlp for more information.  Do not remove the * from
  13. ;the MGET statement.
  14.  
  15. [Settings]
  16. ;Silent=1
  17. ;TimeOut=60
  18. ;DebugMessages=1
  19. ;550DeleteOverRide=1
  20. ;DeleteOverRide=1
  21. ;Debug=1
  22. ;OnSuccessExec=calc
  23. ;OnFailExec=winmine
  24.  
  25. [SDFTP]
  26. 1=CONN ftp.testserver.com
  27. 2=USER anonymous
  28. 3=PASS testuser@testserver.com
  29. 4=PORT
  30. 5=TYPE A
  31. 6=MGET /test/* C:\temp\temp2
  32. 7=QUIT
  33.  
  34.