以下两个文件放在同一目录下 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 ::指定起始文件夹 :: 指定文件夹 set DIR = abc :: d:/abc 改脚本放在d: set DIR="%cd%" echo DIR=%DIR% set /a n=0 setlocal enabledelayedexpansion for %%f in (*.txt) do ( echo %%f echo !n! move %%f filted set /a n+=1 echo ) pause .............................
怎么让bat文件在后台无声无息无影无形地运行呢? 用start/min命令去运行bat文件,电脑的任务栏下仍然会有相关的图标,以下的办法可以达到目的. 方法一: bat里有隐藏窗口的命令,很简单,只需要在代码头部加一段代码就可以了. @echo off if "%1" == "h" goto begin mshta vbscript:createobject("wscript.shell").run("%~nx0 h",