well that should work, provided you've logged onto your FTP account - you'll need to set the username and password to log on prior to using these functions.
if you've done that then i'm unsure...
try the following code and let me know if it works
`// Raven
`// FTP Access
`// April 2003
hide mouse
set window off : set display mode 640,480,16
set window on
lock backbuffer
u as dword = get backbuffer width()
v as dword = get backbuffer height()
set window position u/2, v/2
unlock backbuffer
set window size 200,300
ink rgb(0,0,0), rgb(255,255,255)
type ftp_t
url as string
user as string
pass as string
endtype
ftpConnect as ftp_t
print "input url: ";input ftpConnect.url
print "input username: ";input ftpConnect.user
print "input password: ";input ftpConnect.pass
print "Connecting to ";ftpConnect.url
ftp connect ftpConnect.url,ftpConnect.user,ftpConnect.pass
if get ftp failure()=1
exit prompt "Error","Could not connect to FTP"
endif
print "Please Wait..." : sleep 1000
print "Connected..." : print "Please wait for Directory population"
gosub _scan_ftp
print "Any key to quit"
wait key
cls
print "Disconnecting..."
ftp disconnect
sleep 1000
end
_scan_ftp:
ftp find first
repeat
print get ftp file name$();" -";
print (get ftp file size()/1024);"kbyte"
ftp find next
until get ftp file type()<>-1
return
Tsu'va Oni Ni Jyuuko Fiori Sei Tau!
One block follows the suit ... the whole suit of blocks is the path ... what have you found?