Jump to content

Recommended Posts

Posted

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

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
  • Recently Browsing   0 members

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