Sorry, there is no such method. You can try creating dynamic FTP scripts for the command line FTP utility then execute it with a /S options as ftp myserver /s myscript Example: Dim ftp_script, string ConcatEx "usr myname\n", "pwrd mypass\n", "cd somepath\n", & "md ", newdirname, "\n", "quit\n", ftp_script FileSave "c:\\temp\\myscript.ftp", ftp_script // run it Dim pid, number RunAndWait "ftp myserver /s c:\\temp\\myscript.ftp", "", 0, pid FileDelete "c:\\temp\\myscript.ftp" : Is there any method available with version 2.4.7
|