ผมสร้างโปรแกรมด้วย Window mobile ภาษา VB.NET ทำการ upload file ด้วย ftp
จะทำการเชื่อมต่อ FTP เพื่ออัพโหลดไฟล์
Code (VB.NET)
Dim request As FtpWebRequest = DirectCast(WebRequest.Create("ftp://amecdomain\\iswin:IS2013Dept@amecpoint/QA_Dept/e-Document/FILE_PhotoRecsys/golf.txt "), FtpWebRequest)
request.Credentials = New NetworkCredential("username", "password")
request.Method = WebRequestMethods.Ftp.UploadFile
Dim File() As Byte = System.IO.File.ReadAllBytes("Nand\\pic")
Dim strz As System.IO.Stream = request.GetRequestStream()
strz.Write(File, 0, File.Length)
strz.Close()
strz.Dispose()