質問編集履歴
4
p
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
フォルダ内のダウンロード方法の仕方
|
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
ここに質問の内容を詳しく書いてください。
|
6
6
|
|
7
|
-
|
7
|
+
を用いて、FTPからファイルをダウンロードする機能を実装中に以下のエラーメッセージが発生しました。
|
8
8
|
|
9
9
|
FTPへのログイン接続はできています。
|
10
10
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
```
|
18
18
|
|
19
|
-
F
|
19
|
+
FtpException: 'Error while creating directories. See InnerException for more info.'
|
20
20
|
|
21
21
|
NotSupportedException: 指定されたパスのフォーマットはサポートされていません。
|
22
22
|
|
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
|
42
42
|
|
43
|
-
|
43
|
+
|
44
44
|
|
45
45
|
{
|
46
46
|
|
@@ -72,28 +72,8 @@
|
|
72
72
|
|
73
73
|
// ファイルのダウンロード
|
74
74
|
|
75
|
-
client.DownloadFile(@"ftp://xxx.xxx.xxx.xxx/test.txt", "C:\ftptest/test受け取り完了.txt");
|
76
75
|
|
77
|
-
|
78
|
-
|
79
|
-
}
|
80
|
-
|
81
|
-
}
|
82
|
-
|
83
|
-
}
|
84
76
|
|
85
77
|
|
86
78
|
|
87
79
|
```
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
### 試したこと
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
client.DownloadFile(@"ftp://xxx.xxx.xxx.xxx/test.txt",の行をftp:\xxx.xxx.xxx.xxx\test.txtへ変更しても、同様のエラーがでました。
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
そもそも、client.DownloadFile(@ 以降は、ftpアドレスは使ってはいけないのでしょうか。
|
3
ip修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -97,13 +97,3 @@
|
|
97
97
|
|
98
98
|
|
99
99
|
そもそも、client.DownloadFile(@ 以降は、ftpアドレスは使ってはいけないのでしょうか。
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
### 補足情報
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
私自身、まだプログラミングを始めて2か月程度なのでわかりやすく教えていただくと助かります。
|
2
ip修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -92,7 +92,7 @@
|
|
92
92
|
|
93
93
|
|
94
94
|
|
95
|
-
client.DownloadFile(@"ftp://
|
95
|
+
client.DownloadFile(@"ftp://xxx.xxx.xxx.xxx/test.txt",の行をftp:\xxx.xxx.xxx.xxx\test.txtへ変更しても、同様のエラーがでました。
|
96
96
|
|
97
97
|
|
98
98
|
|
1
ip修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
|
57
57
|
FtpClient client = new FtpClient();
|
58
58
|
|
59
|
-
client.Host = "
|
59
|
+
client.Host = "xxx.xxx.xxx.xxx";
|
60
60
|
|
61
61
|
// client.Port = 7680;
|
62
62
|
|
@@ -72,7 +72,7 @@
|
|
72
72
|
|
73
73
|
// ファイルのダウンロード
|
74
74
|
|
75
|
-
client.DownloadFile(@"ftp://
|
75
|
+
client.DownloadFile(@"ftp://xxx.xxx.xxx.xxx/test.txt", "C:\ftptest/test受け取り完了.txt");
|
76
76
|
|
77
77
|
|
78
78
|
|