I want to create an auto update software, but i need downloadallfolder() function..
I want get all images, sound, dlls included in my software, for update it..
$LastVersion = BinaryToString(InetRead("http://mysite.com/version.php"))
$Version = 1.0.0
If $LastVersion > $Version Then
downloadallfolder('http://mysite.com/updates')
MsgBox(0, 'Updated', 'All updates have been downloaded')
Run('myapp.exe')
Else
MsgBox(0,"No update found", 'this exe will be close')
Exit
EndIf