😂Rename all File Extensions in a Folder, Đổi tên Phần mở rộng tệp trong một Thư mục cùng một lúc (ok)
https://www.thewindowsclub.com/how-to-rename-all-file-extensions-in-a-folder-at-once
C:\xampp82\htdocs\testfr\node_modules\bootstrap3\less\test.bat
@ECHO OFF
PUSHD .
FOR /R %%d IN (.) DO (
cd "%%d"
IF EXIST *.less (
REN *.less *.scss
)
)
POPD
Last updated
Was this helpful?