Mouse Posted December 10, 2013 Posted December 10, 2013 Hey guys, I know there is a file in my FTP server that is called "test.txt" but I am having trouble reading it and then displaying it in a msgbox, It returns 0 . Please help me ;server information $server = 'CENSORED.bugs3.com' $username = 'CENSORED' $pass = 'CENSORED' ;UPLOAD WHAT YOU SAID! $Open = _FTPOpen('MyFTP Control') $Conn = _FTPConnect($Open, $server, $username, $pass) $Ftpp = _FTPReadFile($Conn,"test.txt") $Ftpc = _FTPClose($Open) msgbox(1,"lol",$Ftpp)
dedekpredek Posted December 11, 2013 Posted December 11, 2013 Hi Mouse, you need to open file before read... and check _FTP_FileRead in help $Open = _FTP_Open('MyFTP Control') $Conn = _FTP_Connect($Open, $server, $username, $pass) $Ftpo = _FTP_FileOpen($Conn,"test.txt") $Ftpp = _FTP_FileRead($Ftpo,100000) _FTP_FileClose($Ftpo) $Ftpc = _FTP_Close($Open) 3aberxcs 1
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