Hello!
I'm trying to use the function FindDirectory() and FindFile() on a FTP server but FindDirectory() show me all directories in the current directory except the last one that who was created and FindFile("*.*") don't show me anything.
I don't understand from where is the problem because FindDirectory() worked correctly some hours before. But FindFile("*.*") never worked giving me an empty return.
Here is my code:
sDirectoryList = ftp:FindDirectory();
sFileList = ftp:FindFile("*.*");
print (sDirectoryList );
print (sFileList );
I thank you in advance for your help.