'Create Request To Upload File'
Dim wrUpload As FtpWebRequest = DirectCast(WebRequest.Create _
("ftp://ftp.test.com/file.txt"), FtpWebRequest)
'Specify Username & Password'
wrUpload.Credentials = New NetworkCredential("user", "password")
'Start Upload Process'
wrUpload.Method = WebRequestMethods.Ftp.UploadFile
'Locate File And Store It In Byte Array'
Dim btfile() As Byte = File.ReadAllBytes("c:\file.txt")
'Get File'
Dim strFile As Stream = wrUpload.GetRequestStream()
'Upload Each Byte'
strFile.Write(btfile, 0, btfile.Length)
'Close'
strFile.Close()
'Free Memory'
strFile.Dispose()
'VB.net' 카테고리의 다른 글
실시간 알람 공지 (0) | 2018.03.19 |
---|---|
시스템 상대경로 (0) | 2018.03.19 |
listview에서 마우스 hover시 말풍선 보이게 하기 (0) | 2018.03.16 |
달력 미리보기 (0) | 2018.03.16 |
TabControl에서 Tabpage 숨기기 (0) | 2018.03.16 |