read up on FTP put file ....
Also, what is the error exactly?
Just guessing, I think that the FTP command
is trying to place the file name onto the FTP site exactly
as named .... Not possible because
1 - some files returned by the checklist are not files
but are directories and you did not check for that.
2 - if the filename returned by the checklist contains the full
windows path, the FTP command will try to access that path on the
FTP site, and that path will not exist. You should check the FTP
site for a valid directory before writing to it.
3 - I think FTP file names follow the old DOS filename thing and might not support long filenames like windows does. Also check for space (asci 32 ) in the filename, sometimes that's a problem too.