
Checking for a remote file
I think it might be
if filelen ( http://www.*-*-*.com/ ......) < 0 then
msgbox "ASSMMADER"
else
msgbox "IT DOESNT EXIST YOU {*filter*}"
end if
I know that works locally but it might not do over the net. What you're
saying with that code is basically, if the length of the file you want to
check for is more than 0 bytes (ie if it exists at all) then show a message
box (assmander), otherwse - if the filelength is 0, meaning it doesn't
exist - its shows a different message box (IT DOESNT EXIST YOU {*filter*}).
Obviously you can change the msgbox code snippets to anything you would like
to be performed.
Quote:
> How can i search for a file on a website with my program, i don't want to
> download it, i just want to know if it is there or not.
> TIA