How to Re-Number the Files Sequentially on Windows using Batch P

  • 时间:2020-09-18 17:26:09
  • 分类:网络文摘
  • 阅读:94 次

You probably have a list of files e.g. camera pictures that you want to re-number sequentially. For example, the photos are named using dates-and-time string.

image-list-with-dates How to Re-Number the Files Sequentially on Windows using Batch Programming/Script? batch script tools / utilities windows windows batch

image-list-with-dates

However, this is not idea, as many of us want to re-name the files sequentially and possibly with a prefix.

images-re-numbered How to Re-Number the Files Sequentially on Windows using Batch Programming/Script? batch script tools / utilities windows windows batch

images-re-numbered

Using the batch script below, we can easily rename all files in the same folder sequentially.

1
2
3
4
5
6
7
8
9
10
11
@echo off
REM rename-tool.cmd
setlocal enabledelayedexpansion
 
set num=1
for %%f in (*.%2) do (
    ren "%%f" "%1!num!.%2"
    rem increment the numbering
    set /a num=!num!+1
)
endlocal
@echo off
REM rename-tool.cmd
setlocal enabledelayedexpansion

set num=1
for %%f in (*.%2) do (
	ren "%%f" "%1!num!.%2"
	rem increment the numbering
	set /a num=!num!+1
)
endlocal

Example usage:

1
rename-tool myfiles- jpg
rename-tool myfiles- jpg

The first parameter is the prefix, and the second parameter the file suffix (extension). The above batch script may fail to rename some files if the target file exists, thus it is better to choose a different prefix when first time renaming all the files in the folder.

–EOF (The Ultimate Computing & Technology Blog) —

推荐阅读:
[组图]打雪仗|小学作文  看图写话 我最爱吃的水果 戴海鑫|小学作文  “六一”儿童节_550字  2019年父亲节_1000字  传统节日作文 快乐的”五一节”_400字  n你和孩子说话的语气,决定了孩子的智商和情商  有多大的手,端多大的碗  有个知心的人, 就是幸福!  会做人,才能赢天下!  人生,这趟有来无往的列车 
评论列表
添加评论