ftp automation

ScriptFTP

The professional tool to automate FTP, SFTP, FTPS and schedule FTP batch jobs

The forum is now read only. Please, go to the the main ScriptFTP website if you need help.
Post here if you experience file transfer problems or unexpected errors.
Running

VERBOSE(ON)
Verbose mode enabled

LOGTO("C:\logs\TransferLog.txt",APPEND)
Logging output to C:\logs\TransferLog.txt

GETTIME()
Retrieving current time.
2014_11_03-09_33_11

SETPASSIVE(DISABLED)
Enabling passive mode.

SETCLOCKDIFF("-3600")
Server-client clock time difference manually set to -3600 seconds.

OPENHOST ............my website

230 User logged in.
SYST
215 Windows_NT
FEAT
211-Extended features supported:
LANG EN*
UTF8
AUTH TLS;TLS-C;SSL;TLS-P;
PBSZ
PROT C;P;
CCC
HOST
SIZE
MDTM
REST STREAM
211 END
OPTS UTF8 ON
200 OPTS UTF8 command successful - UTF8 encoding now ON.
PWD
257 "/" is current directory.
Connected.

SYNC("C:\FortisData","/ftp/Central",DOWNLOAD,SUBDIRS)
CWD /ftp/Central
550 The system cannot find the path specified.
***** SYNC Error #17550: Cannot change current remote directory to /ftp/Central.
***** The server said: The system cannot find the path specified.

GETTIME()
Retrieving current time.
2014_11_03-09_33_14

CLOSEHOST
QUIT
221 Goodbye.
Client closed the connection.
Disconnected.



I run WIN SCP, it works. What could be the problem? It worked in the past.
I would check if the path "/ftp/Central" is correctly typed. Some FTP servers are case sensitive so /ftp/Central could be invalid if the real name is "/FTP/Central", for example.