-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFtpHelper.cs
More file actions
122 lines (98 loc) · 3.46 KB
/
FtpHelper.cs
File metadata and controls
122 lines (98 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
using System;
using System.IO;
using System.Linq;
using System.Net;
using System.Xml.Serialization;
namespace ExpressBackup
{
class FtpHelper
{
readonly string
host,
user,
password,
path;
public event Action<long, long>
Progress;
public FtpHelper(string host, string user, string password, string path = null)
{
this.host = host;
this.user = user;
this.password = password;
this.path = path;
if (this.path == null)
this.path = string.Empty;
if (this.path.Length > 0 && this.path[0] != '/')
this.path = '/' + this.path;
}
FtpWebRequest PrepeareRequest(string fileName, string method)
{
var
request = (FtpWebRequest)WebRequest.Create(this.host + this.path + "/" + fileName);
request.Method = method;
request.Credentials = new NetworkCredential(this.user, this.password);
request.UseBinary = true;
request.KeepAlive = false;
return request;
}
FtpWebResponse ValidateResponse(FtpWebRequest request, FtpStatusCode validStatus)
{
var
response = (FtpWebResponse)request.GetResponse();
if (response.StatusCode != validStatus)
throw new Exception("unexpected ftp status: " + response.StatusDescription);
return response;
}
const int
bufLength = 1024 * 64;
public void UploadFile(string fileName)
{
var
fileInfo = new FileInfo(fileName);
var
request = PrepeareRequest(fileInfo.Name, WebRequestMethods.Ftp.UploadFile);
request.ContentLength = fileInfo.Length;
using (var output = request.GetRequestStream())
{
var
buf = new byte[bufLength];
using (var input = fileInfo.OpenRead())
{
int
length;
long
n = 0;
while ((length = input.Read(buf, 0, bufLength)) != 0)
{
output.Write(buf, 0, length);
if (this.Progress != null)
{
n += length;
this.Progress(n, fileInfo.Length);
}
}
}
}
ValidateResponse(request, FtpStatusCode.ClosingData).Close();
}
public string[] GetFileList(string path)
{
var
response = ValidateResponse(
PrepeareRequest(string.Empty, WebRequestMethods.Ftp.ListDirectory),
FtpStatusCode.OpeningData);
using (var reader = new StreamReader(response.GetResponseStream()))
{
var temp = reader.ReadToEnd();
response.Close();
return temp.Replace("\r\n", "\n").Split('\n').Where(e => e != string.Empty).ToArray();
}
}
public void DeleteFile(string fileName)
{
ValidateResponse(
PrepeareRequest(fileName, WebRequestMethods.Ftp.DeleteFile),
FtpStatusCode.FileActionOK).Close();
}
}
}