czmaster 0 Posted June 16, 2011 Hello,I want to rename a FTP directory with an Autoit Script.The _FTP_FileRename work with a file but doesn't work with a directory.I tried also to do it in command line with _FTP_Command but it doesn't work.FTP_Command($Conn,"RNFR "&"old"&@crlf) sleep(100) _FTP_Command($Conn,"RNTO "&"new"&@crlf)Can you help me ? Share this post Link to post Share on other sites
sahsanu 28 Posted June 16, 2011 I tried also to do it in command line with _FTP_Command but it doesn't work. FTP_Command($Conn,"RNFR "&"old"&@crlf) sleep(100) _FTP_Command($Conn,"RNTO "&"new"&@crlf) Use @LF instead of @CRLF Share this post Link to post Share on other sites
sahsanu 28 Posted June 16, 2011 Thank you !!You are welcome. Anyway, in my ftp server it works with or without @LF Share this post Link to post Share on other sites