标题: [求助:]在windows下怎么样可以用ftp自动传送文件?? [打印本页] 作者: hf8 时间: 2003-01-22 11:22 标题: [求助:]在windows下怎么样可以用ftp自动传送文件?? 我在论坛看到有一个办法可以实现在windows下用ftp自动传送文件
具体做法,先编写一个文件内容如下:
open 192.168.0.1
nms
pywg
binary
cd resrc/xvt/batcmd
put d:\xlt.txt
却出来错误信息如下,谁能帮我看看到底错在哪里?我的用户名和密码已经输入为什么还是出错
ftp>; open 192.168.0.1
Connected to 192.168.0.1
220-
220 pyclt02 FTP server (Version 2.1WU(1)) ready.
User (192.168.0.1none)):
331 Password required for nms .
530 Login incorrect.
Login failed.
ftp>;
ftp>; binary
200 Type set to I.
ftp>; cd resrc/xvt/batcmd
530 Please login with USER and PASS.
ftp>; put d:\xlt.txt
200 PORT command successful.
530 Please login with USER and PASS.
ftp>; ftp>;作者: kelvin 时间: 2003-01-22 14:02 标题: [求助:]在windows下怎么样可以用ftp自动传送文件?? 首先建立一个脚本文件prog
open des-host
user username passwd
put your files
bye