kindly help me,
After running the below mentioned commend the file is uploading but the file size is 0 kb. kindly help.
If comm.CheckConnection Then
currentfilesize = File.Size(File.DirInternal, "32556365.jpg")
PB.Visible = True
percent.Visible = True
Dim sf As Object = FTP.UploadFile(File.DirInternal, "32556365.jpg", False, "/Html/IMG/32556365.jpg")
Wait For (sf) FTP_UploadCompleted (ServerPath As String, Success As Boolean)
If Success Then
Log("file was uploaded successfully")
Else
Log("Error uploading file")
End If
Else
MsgboxAsync ("No Internet Connection - Please check Net Connection", "Connection Error")
End If Log(File.DirInternal)
End Sub