0

Pythonスクリプトを使用してftpコマンド「 put 'FILE_NAME' 」を実行するにはどうすればよいですか?

FTPで接続したプロセッサにファイルを転送したい。

コマンドは ftp> put "C:\filename" です

これをpythonスクリプトで実行したい。これを手伝ってください。

4

1 に答える 1

0
from subprocess import call

call(['echo "put C:\filename" | ftp'])

this should call "ftp" command and pass input string "put C:\filename"

于 2013-05-07T12:40:25.390 に答える