cyberwolf14
Programmer
Hello,
I use this code to download a file from a server.
Everything works fine until I use a [SPATIE] in the name of the file I want to download.
This doesn't work
What do I need to do so I can download a file with a [SPATIE]?
I use this code to download a file from a server.
Code:
Inet1.Protocol = icFTP
Inet1.URL = "ftp.server.com"
Inet1.UserName = "username"
Inet1.Password = "*********"
Inet1.Execute , "GET /downl/file.exe C:\test.exe"
Code:
Inet1.Protocol = icFTP
Inet1.URL = "ftp.server.com"
Inet1.UserName = "username"
Inet1.Password = "*********"
Inet1.Execute , "GET /downl/file 2.exe C:\test.exe"
What do I need to do so I can download a file with a [SPATIE]?