
I use this command to read a content of folder :
Code: Select all
put url ("ftp://ftp.donotexist.com/") into vAddress
Thanks,
Paolo
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
put url ("ftp://ftp.donotexist.com/") into vAddress
Code: Select all
...
put url ("ftp://ftp.donotexist.com/") into tAddress
if the result <> empty then
answer the result
end if
...