Jump to content

Problems With My First Script


Recommended Posts

Hi Guys,

Trying to write my first script to access my unix box via ftp. the script is as follows:

$answer = InputBox("File Transfer", "Enter Name of File required : ")

FileOpen ( "ftp.ftp", 2 )

FileWriteline( "ftp.ftp", "root" )

FileWriteline( "ftp.ftp", "secret" )

FileWriteline( "ftp.ftp", "cd /u/foxbase/data" )

FileWriteline( "ftp.ftp", "binary" )

FileWriteline( "ftp.ftp", "get " & $answer )

FileWriteline( "ftp.ftp", "quit" )

fileclose("ftp.ftp")

RunWait(@ComSpec & " /c " & 'ftp -s:ftp.ftp 192.168.1.200', "", @SW_HIDE)

exit

But it seems to loop and re-open itself over and over until cancelled, any ideas?

Thanks

Steve

Link to comment
Share on other sites

  • Developers

Rename it to MYFTP.AU3 and compile it...

You are starting your own script everytime in stead of the FTP program from microsoft...

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...