Dear Support,
I use vb.net and use express in trail mode for now.
Have problems uploading multiple files in the root of serverdirectory(httpdocs).
ExFTPConnection1.LocalDirectory = Application.StartupPath & "\upload\"
ExFTPConnection1.ServerDirectory = "subdomains" & "/" & Replace(cbplaats.Text.ToLower, " ", "") & "/httpdocs/"
Code that works:
ExFTPConnection1.UploadMultiple(ExFTPConnection1.LocalDirectory, "test", "*,*", True)
Code that don't work:
ExFTPConnection1.UploadMultiple(ExFTPConnection1.LocalDirectory, ExFTPConnection1.ServerDirectory, "*,*", True)
I don't target but tries to create a dir witch already exist "httpdocs" and gave an error (550).
Is there a simple solution to do this with the upload including the subdirs:?: .