bat代码如下: @echo off @set /p fromFile=from: @set /p toFile=to: rem 找到所有文件 dir /b /s %fromFile%\ *.gz >tmp rem 一个文件一个文件的处理 for /f "delims=" %%x in (tmp) do ( copy /y "%%x" %toFile% ) del tmp 使用截图:
@echo off for /f "tokens=2 delims==" %%a in ('wmic LogicalDisk where "VolumeName='Hello'" get DeviceID /value') do ( set DriveU=%%a ) md D:\Debug%,%%,%%,% :,%:\DianJiao_ver2\DianJiao_ver2\bin\x64\Debug xcopy %DriveU:~,%:\DianJiao_ver2\
本地路径的创建 在做下载操作时,我们一般先把文件下载到本地指定的路径下,然后再做其他使用. 为了防止程序出现异常,我们通常需要先判断本地是否存在指定的路径. 以C盘Tmp文件夹为例,我们可以这样做,代码如下: if not DirectoryExists('C:\Tmp') then if not CreateDir('C:\Tmp') then raise Exception.Create('Opps, Create New Dir Failed!'); 清空本地指定文件夹下的文件 以C盘Tm