iOS Question FTP Transfer Mode?

yejian

Member
Licensed User
Longtime User
local file size 12K
Uploaded to the server only 4K



FTP.Initialize("FTPCommand","*******",21,"***","***")

FTP.UploadFile(File.DirDocuments,"Ordine.db",True,"/Ordine.db")

Sub FTPCommand_UploadCompleted (ServerPath As String, Success As Boolean)
If Success Then
hd.ProgressDialogHide
Msgbox("ok!","FTP")
Else
Msgbox("FTP error!","FTP error")
End If
End Sub
Prompt ok
 
Upvote 0

Jean Weets

Member
Licensed User
Longtime User
I have the same problem.
Download files = ok
Uploud file often only 4344 bytes. never completely. No error message. :|
 
Upvote 0
Top