Jump to content

Recommended Posts

Posted

Hey guys

im having an issue with inetget. I can download from http sites no problems and i remember being able to download via ftp but recently when ive tried ive had an issue and cant get anything via inetget from an ftp website.

Ive tried the following sites

ftp://ftp6.nero.com/tools/General-CleanTool.zip

ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe

and the 1 listed below with no joy. Im wondering if it works for other epeople then my comp has an issue. Could someone pls test this on their comp and or tell me if something im overlooking is a miss

thanks in advance

jamie

Local $hDownload = InetGet("[url="ftp://anti-virus.by/pub/Vba32Check.exe"]ftp://anti-virus.by/pub/Vba32Check.exe[/url]", @TempDir & "\vba32.zip", 5, 1)
Do
 Sleep(250)
Until InetGetInfo($hDownload, 2) ; Check if the download is complete.
Local $nBytes = InetGetInfo($hDownload, 0)
InetClose($hDownload) ; Close the handle to release resourcs.
MsgBox(0, "", "Bytes read: " & $nBytes)

Drunken Frat-Boy Monkey Garbage

Posted

These work for me...

Local $hDownload = InetGet("ftp://ftp.anti-virus.by/pub/Vba32Check.exe", @TempDir & "Vba32Check.exe", 1, 1)
Local $hDownload = InetGet("ftp://ftp6.nero.com/tools/General-CleanTool.zip", @TempDir & "General-CleanTool.zip", 1, 1)
Local $hDownload = InetGet("ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe", @TempDir & "Norton_Removal_Tool.exe", 1, 1)

"The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward

Posted

These work for me...

Local $hDownload = InetGet("ftp://ftp.anti-virus.by/pub/Vba32Check.exe", @TempDir & "Vba32Check.exe", 1, 1)
Local $hDownload = InetGet("ftp://ftp6.nero.com/tools/General-CleanTool.zip", @TempDir & "General-CleanTool.zip", 1, 1)
Local $hDownload = InetGet("ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe", @TempDir & "Norton_Removal_Tool.exe", 1, 1)

Thanks

Must be my computer

Drunken Frat-Boy Monkey Garbage

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
×
×
  • Create New...