Jump to content

Recommended Posts

Posted

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  :shifty:

;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)
Posted

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)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...