Hi,
I can confirm uploading a single file, downloading a single file and deleting a file all work fine, the only issue is uploading a pattern of files:
I am using the code in your on-line examples:
ftp.CreateFolder("Uploads")
Dim options As New LocalSearchOptions("*.txt", True)
ftp.UploadFiles("Uploads", "c:\", options)
The folder is created correctly - as I can confirm the folder looking on the server, but when the UploadFiles code is run the error message is returned is:
'Folder 'Uploads' does not exist on the server.'
Any ideas what I could be missing here as the Folder does exist in the location it created it in?
Below is the log
S : 220--------- Welcome to Pure-FTPd [privsep][TLS] ---------
S : 220 - You are user number 2 of 100 allowed.
S : 220 - Local time is now 21:54.Server port: 21.
S : 220 - This is a private system -No anonymous login
S : 220 - IPv6 connections are also welcome on this server.
S : 220 You will be disconnected after 15 minutes of inactivity.
C : AUTH TLS
S : 234 AUTH TLS OK.
C : USER XXXX
S : 331 User exchang OK. Password required
C : PASS XXXX
S : 230 OK.Current restricted directory is /
C : FEAT
S : 211 - Extensions supported:
S : UTF8
S : EPRT
S : IDLE
S : MDTM
S : SIZE
S : MFMT
S : REST STREAM
S : MLST type*; size *; sizd *; modify *; UNIX.mode *; UNIX.uid *; UNIX.gid *; unique *;
S : MLSD
S : PRET
S : AUTH TLS
S : PBSZ
S : PROT
S : TVFS
S : ESTA
S : PASV
S : EPSV
S : ESTP
S : 211 End.
C : OPTS UTF8 ON
S : 504 Unknown command
C : MKD Uploads
S : 257 "Uploads" : The directory was successfully created
C : MLST Uploads
S : 521 Data connection cannot be opened with this PROT setting.
An unhandled exception of type 'Limilabs.FTP.Client.FtpException' occurred in Ftp.dll: Folder 'Uploads' does not exist on the server.