Menu

Wednesday, June 12, 2013

[Batch Script] เปลี่ยนชื่อไฟล์ทั้งหมดในแฟ้ม
[Batch Script] Rename All Files in Folder

  1. @echo off
  2. set OpList=%TEMP%\%RANDOM%.bat
  3. copy nul "%OpList%"
  4. set /a num=1
  5. setlocal enabledelayedexpansion
  6. for %%F in (%1\*) do (     
  7.      echo ren "%%F" "%2!num!.jpg" >> "%OpList%"
  8.      set /a num=num+1
  9. )
  10. endlocal
  11. call "%OpList%"
  12. del "%OpList%"
  13. pause

เพื่อเรียกใช้สคริปต์นี้ ใช้คำสั่งตามด้านล่าง
To call this script, use below command
script_name.batfolder_path] [ file_prefix]

No comments:

Post a Comment