回答編集履歴

1

参考URLの追記

2017/10/05 05:02

投稿

退会済みユーザー
test CHANGED
@@ -1,3 +1,19 @@
1
1
  FTPでのファイルの一覧を取得する部分と、目的のファイルをダウンロードする部分を分ければ実装可能かと思います。
2
2
 
3
3
  ファイル一覧から最新のファイルを抽出するのはPowerShellで行います。
4
+
5
+
6
+
7
+ ---
8
+
9
+ 追記:
10
+
11
+ ファイルのダウンロードに Invoke-WebRequest コマンドレットを使用されているかもしれませんので、
12
+
13
+ WebClientを使用した場合の参考URLを追記します。
14
+
15
+
16
+
17
+ * [PowerShell Connect to FTP server and get files](https://stackoverflow.com/questions/19059394/powershell-connect-to-ftp-server-and-get-files)
18
+
19
+ * [How to upload using FTP in Powershell, behind a proxy?](https://stackoverflow.com/questions/10098485/how-to-upload-using-ftp-in-powershell-behind-a-proxy)