一些用批處理命令批量處理資料夾或檔案的功能實現

2021-08-17 13:53:36 字數 1687 閱讀 5615

筆者之前做實驗,需要批量處理大量的資料夾或者檔案,寫了一些批處理的指令碼,在這裡記錄分享一下:

1.將資料夾名中某個字元替換為另一字元

@echo off

::設定待替換的字元

set r1=0

::設定替換後的字元

set r2=1

setlocal enabledelayedexpansion

for /f "delims=" %%a in ('dir/ad/b') do (

set y=%%a

ren "%%~a" "!y:%r1%=%r2%!")

echo.&echo 替換成功

pause

2.批量新建資料夾

for /l %%i in (11,1,100) do md h:\folder

pause

3.刪除當前資料夾下所有子目錄中指定名字的資料夾

@echo off

for /f "delims=" %%i in ('dir /ad /b /s "8"') do (

rd /s /q "%%i"

)

4.刪除檔名中包含指定字元的檔案

@echo off

set "fn=so_*.txt"

for /r %%i in ("%fn%?")do echo %%i&del "%%i"

pause

5.刪除檔名中指定的字元

@echo off&setlocal enabledelayedexpansion

for /f "delims=" %%a in ('dir /b/a-d e*.txt') do (

set "str=%%a"

set "str=!str:e=!"

ren "%%a" "!str!"

)

6.刪除指定行號的行

@echo off

setlocal enabledelayedexpansion

set/p v=請輸入要刪除的行號並回車,若指定多行請用空格隔開(如:2 5 8):

for %%i in (%v%) do (

set x=!x! %%id;

echo !x!

)sed -i "%x%" 123.txt

pause

7.刪除子資料夾內檔名中指定字元

@echo off&setlocal enabledelayedexpansion

pushd h:\experimentresults\leve2\source_output

for /f "delims=" %%a in ('dir /a-d /b /s so_*.txt') do (

set "str=%%~nxa"

set "str=!str:so_=!"

ren "%%a" "!str!"

)popd

pause

8.在檔名指定位置新增指定字元

@echo off

for /f %%i in ('dir /a-d /b *.txt') do ren %%i e_0.%%~ni.txt

@pause

批量複製資料夾的批處理 bat命令

1 建bat檔案自動執行複製,刪除命令。例1 以下是複製cd.dll檔案至windows system32的bat檔案內容 copy cd.dll windir system32 例2 下面一行是解除安裝windows system32目錄中的cd.dll,即把上面複製的檔案刪除 del windi...

用批處理遍歷列印資料夾以及刪除空資料夾

批處理列印資料夾 方法一 for r d 要遍歷的目錄 i exe do echo i 方法二 set destpath d 你的目錄 rem 你的字尾 set destext exe for f delims i in dir b a d s destpath destext do echo i ...

批處理實現資料夾同步

1.設定檔案1 file list.txt 列出要同步的資料夾 dir1 dir2 dirn 2.批處理檔案 copy.cmd set remote root path f dir set local root path d local dir for f a in file list.txt do...