| | | Forum Newbie
       
Group: Forum Members Last Login: 8/5/2005 12:54:00 AM Posts: 1, Visits: 1 |
| I installed WSFTP_Server in Windows 2003 Server, and WSFTP_Pro SDK in Windows XP. I use VB program to call the sdk. it is no problem to create using ftp-ssl connection and upload files to server. But the only thing is when i successfully upload my file to server, 2 files are automatically generated in my sourcepath (.bak & .cdb) which i didnt wrote this. Is it integrated in the WSFTP_Pro SDK? Any setting that i can remove this 2 unnecessary files. My VB code is as below: Set pApi = CreateObject("WsftpSDK.WsftpApi") ' Setting some options pApi.DiagnosticLog = False pApi.TimeStampLog = False Set pLocFolder = pApi.GetRootLocalFolder() Set pLocFolder = pApi.GetLocalFolder("C:\Outbox") ' Making connection Set pConn =
pApi.CreateUrlConnection("ftp-authssl://admin1:pw1@192.168.0.1:990") If pConn Is Nothing Then Else ' Upload 2 files pConn.PutFile "C:\Outbox", "File1", "/users", "File1", 0, 0
End If Please let me know if i need to define smtg to remove that .bak & .cdb files. Thanks.
fishyee |
| | | | Time Traveler
       
Group: Ipswitch Employees Last Login: Today @ 3:28:29 PM Posts: 223, Visits: 234 |
| Those two files are storage for the trusted certificates when connecting in SSL. The SDK will always create them, if they do not exist already. Unfortunately, there is no way to avoid that. Claudio |
| |
|
|