2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ワンファイルをFTPでPUTするバッチ

Last updated at Posted at 2012-03-16

Marijuanaさんが書いてくれたのでメモ

@echo off
echo ftpの情報を入力します

set /p SV="ftpサーバのアドレスを入力 > "
set /p US="ユーザ名を入力 > "
set /p PW="パスワードを入力 > "
set /p UPPATH="アップロードフォルダを入力 > "

set FTPCMD=%TEMPDIR%\ftpcmd.txt

echo open %SV%> %FTPCMD%
echo %US%>> %FTPCMD%
echo %PW%>> %FTPCMD%
if "%UPPATH%" NEQ "" echo cd %UPPATH%>> %FTPCMD%
echo put install.php>> %FTPCMD%
echo bye>> %FTPCMD%

ftp -s:%FTPCMD%

pause
del %FTPCMD%
2
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?