假设我正在处理index.php并配置css文件夹上的style.css。我可以使用一行使用命令行将两个文件传输到服务器吗?
答案 0 :(得分:0)
您可以通过创建包含以下内容的ftp命令脚本文件(例如ftp.txt)来上传文件:
(username)
(password)
cd /folder-on-server
binary
put c:\myfolder\myfile.jpg
put c:\myfolder\style.css
然后在命令行上
ftp -s:ftp.txt ftp.example.com
基于:http://wiki.tekkies.co.uk/General_Technical#FTP_using_xp_cmdshell_-_sql2k