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 a batch program to delete its own bat

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly shows you "how to achieve batch programs to delete their own bat", the content is easy to understand, clear, hope to help you solve your doubts, the following let Xiaobian lead you to study and learn "how to achieve batch programs to delete their own bat" this article.

The batch program deletes itself .bat

Echo sometimes we need a batch program to delete itself after execution is complete, we can use del 0

Example:

The code is as follows:

@ echo off

I will delete myself after echo presses any key.

Pause

Del 0

However, if your batch needs to change the current batch directory, there will be an error, which will not achieve the effect we predicted.

For example: the current batch is named do.bat

The code is as follows:

Move *. * d:\

Del 0

You can't delete do.bat.

Then you need to combine the pipeline operator |

Del% 0 | move *. * d:\

The above is all the contents of the article "how to implement a batch program to delete its own bat". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more 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