回答:
標準のコマンドラインftpクライアントを使用している場合、このMPUT
コマンドを使用すると、(シェルグロブスタイル)パターンに一致するすべてのファイルを転送できるためMPUT *
、現在のディレクトリにあるすべてのファイルが送信されます。MGET
パターンに一致するファイルを取得することもできます。
デフォルトでは、両方MPUT
をMGET
実行する前に、各ファイルを転送するかどうかを尋ねられます。「PROMPT」コマンドを使用してプロンプトをオフにすることをお勧めします(引数なし。トグルです)。
ncftpputを使用できます。以下をせよ:
ncftpをインストールします。
yum install ncftp
yumは小文字です。
代わりに:
apt-get install ncftp
2.次のコマンドを実行します。
ncftpput -R -v -u "ftp-username" ftp.website.com ftp-upload-path local-path/*
LeechFTPやFileZillaなどのFTPクライアントを使用します。多くの人がCuteFTPに誓いますが、最後にチェックしたシェアウェアです。すべてが、ディレクトリ構造を含むフォルダー全体の転送をサポートしています。
ここにたどり着く私のような他のWindows初心者向けの簡単なチュートリアル:
フォルダー全体(すべてのサブフォルダーとファイルを含む)をアップロードする最も簡単な方法は次のとおりです。
ncftpput -u * yourUserNameHere * -p * yourUserPasswordHere * -R * www.yourWebsite.com * / _C:\ yourFolderDirectoryHere \\ * _(1行として)。
ご了承ください:
-R
「再帰的」のフラグです。コマンドにすべてのサブフォルダーを再帰的にコピーさせます/
(スラッシュ)はWebサイトのルートディレクトリですC:\yourFolderDirectoryHere\*
内部のすべてを選択します C:\yourFolderDirectoryHere
私は答えを提供します-それは純粋な総当たりであり、ほんの少しエレガントではありませんが-コマンドラインで私のために働いた唯一のものでした。ファイルのリストを作成し、スクリプトに入れました。
ファイルのリストを生成します。
find my-dir -exec echo "put /Users/username/"{} {} \;
それらをコピーしてスクリプトに貼り付けます。
#!/bin/bash
hostname="my-ftp-host"
username="username"
password="password"
ftp -in $hostname <<EOF
quote USER $username
quote PASS $password
binary
cd 123456
{COPY THE LIST HERE}
quit
EOF
ターゲットディレクトリはzipファイルです。以下のコードを使用して、完全なzipファイルをFTPサーバーにコピーできます。
//Taking source and target directory path
string sourceDir = FilePath + "Files\\" + dsCustomer.Tables[0].Rows[i][2].ToString() + "\\ConfigurationFile\\" + dsSystems.Tables[0].Rows[j][0].ToString() + "\\XmlFile";
string targetDir = FilePath + "Files\\Customers\\" + CustomerName + "\\" + SystemName + "\\";
foreach (var srcPath in Directory.GetFiles(sourceDir))
{
//Taking file name which is going to copy from the sourcefile
string result = System.IO.Path.GetFileName(srcPath);
//If that filename exists in the target path
if (File.Exists(targetDir + result))
{
//Copy file with a different name(appending "Con_" infront of the original filename)
System.IO.File.Copy(srcPath, targetDir + "Con_" + result);
}
//If not existing filename
else
{
//Just copy. Replace bit is false here. So there is no overwiting.
File.Copy(srcPath, srcPath.Replace(sourceDir, targetDir), false);
}
}
私の答えは@dgigの答えのバリエーションです。
すべてのファイルをリストし、それらを(putコマンドを含めて)ファイルに保存できます。
find my-dir -exec echo "put /Users/username/"{} {} > list.txt \;
次に、sftpを使用してファイルを処理します。
sftp -C -b sftpbatchfile.txt name@server
-C
圧縮-b
用、バッチファイル用
sftp
プログラムはSFTPプロトコルを使用しますが、これはいくつかの共通の文字がありますが、異なるプロトコルです。そして、あなたはenter code here
残り物を編集しませんでした。