Wiij Posted July 4, 2015 Posted July 4, 2015 Please help this newbie. This code does connect, but it won't create a directory and it won't put the contents. I don't receive any errors. I can't figure out what I'm doing wrong. Any help would be greatly appreciated.Thanks #RequireAdmin#include <FTPEx.au3>Local $sServer = '192.168.1.140'Local $sUsername = 'test'Local $sPass = 'test'Local $hOpen = _FTP_Open('abc')Local $hConn = _FTP_Connect($hOpen, $sServer, $sUsername, $sPass ,0, 1024)_FTP_DirCreate ($hOpen, "/apple")_FTP_DirPutContents($hOpen, "C:\Temp","/test",1)Local $iFtpc = _FTP_Close($hConn)Local $iFtpo = _FTP_Close($hOpen)
Wiij Posted July 4, 2015 Author Posted July 4, 2015 I figured it out. It should have been:_FTP_DirCreate ($hConn, "/apple")_FTP_DirPutContents($hConn, "C:\Temp","/test",1)Thanks
water Posted July 4, 2015 Posted July 4, 2015 Welcome to AutoIt and the forum!Every function sets the return value or macros @error or @extended. The meaning of this values can then be found in the help file.I suggest to check for errors after each function call. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Wiij Posted July 4, 2015 Author Posted July 4, 2015 Welcome to AutoIt and the forum!Every function sets the return value or macros @error or @extended. The meaning of this values can then be found in the help file.I suggest to check for errors after each function call. Thanks Water, but I just checked the above code and it returns Error 0 and Extended 0.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now