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

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