home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / vol1 / pc_sd138.zip / SCRIPTS.ZIP / MGTC.FTP < prev    next >
Text File  |  1997-01-04  |  1KB  |  37 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).  This command will not download the files on
  4. ;the remote ftp server that already exist in your destination
  5. ;directory.  To use this script modify the CONN
  6. ;statement to reflect the ftp server you want to connect to.
  7. ;Then modify the USER and PASS statements with your username
  8. ;and password.  Finally, specify the full path to the remote
  9. ;directory with the files in it followed by the full path to
  10. ;the local directory for the new files in the MGTC statement.
  11. ;All of the settings have been commented out with the ;.  If
  12. ;you need any of them just remove the ; and set the setting to
  13. ;whatever is appropriate.  Please consult the help file
  14. ;sdftp.hlp for more information.  Do not remove the * from
  15. ;the MGTC statement.
  16.  
  17. [Settings]
  18. ;Silent=1
  19. ;TimeOut=60
  20. ;DebugMessages=1
  21. ;550DeleteOverRide=1
  22. ;DeleteOverRide=1
  23. ;Debug=1
  24. ;OnSuccessExec=calc
  25. ;OnFailExec=winmine
  26.  
  27. [SDFTP]
  28. 1=CONN ftp.testserver.com
  29. 2=USER anonymous
  30. 3=PASS testuser@testserver.com
  31. 4=PORT
  32. 5=TYPE A
  33. 6=MGTC /test/* C:\temp\temp2
  34. 7=QUIT
  35.  
  36.  
  37.