Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement dos batch replacement of current directory suffix name

2025-03-26 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces how to achieve dos batch replacement of the current directory suffix, the article is very detailed, has a certain reference value, interested friends must read it!

Sometimes some suffix names do not meet the conditions, they need to be replaced in batches. If you replace them artificially, then if the quantity is small, then it would be silly to replace them one by one. Today, I looked up some batch replacement dos commands from the network, which are quite easy to use, so just paste the code here.

For example, sometimes the suffix name is jpeg, but some websites can only upload the suffix name of jpg for the sake of security, so you can use this to replace the tool in batch.

The code is as follows:

@ echo off

Set / p filename= Please enter the suffix name to replace:

Echo.

Set / p filename2= Please enter the suffix name after replacement:

Echo.

Setlocal ENABLEDELAYEDEXPANSION

For / f "tokens=*"% I in ('dir / b *.% filename%') do (

For / f "tokens=1 delims=."% j in ("% I") do ren "% I"% j.% filename 2"

)

Echo replaced successfully! Press any key to launch

Pause

The above is all the contents of the article "how to replace the current directory suffix in batch by dos". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report