以下两个文件放在同一目录下 getfile.bat文件内容如下: @echo offftp.exe -i -s:getfile.txt 192.168.1.2(更换成你的ip,参数之间有空格)pauseexit@echo off getfile.txt文件内容如下 myaccount mypassword cd Abinlcd D:\TEMP get A.exe cd.. cd B get B.exe cd.. cd C get C.exe bye…
实例 @echo off rem 打开远程ftp echo open 172.16.137.23 > ftpconfig.txt rem 使用匿名用户登录 echo user anonymuous >> ftpconfig.txt rem 匿名用户随便填一个邮箱或者密码(如果不是匿名用户则填写用户名密码) echo test@test.com >> ftpconfig.txt rem 进入指定目录 echo cd /qr/ >> ftpconfig.txt rem…
有些时间没发表文章了,之前用到过,这是我总结出来关于ftp相关操作一些方法,网上也有很多,但是没有那么全面,我的这些仅供参考和借鉴,希望能够帮助到大家,代码和相关引用我都复制粘贴出来了,希望大家喜欢 using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Net;using System.Text.RegularExpressions; namespa…