Batch Processing programs delete their own bat batch processing

Source: Internet
Author: User

Batch Processing Program deletes itself. bat

Echo sometimes we need to delete the batch processing program after the execution is complete. You can use del % 0
Example:

Copy codeThe Code is as follows: @ echo off
Echo will delete itself after pressing any key
Pause
Del % 0

However, if your batch processing needs to change the current batch processing Directory, an error will occur, which cannot achieve our expected results.

For example, the current batch name is do. bat.Copy codeThe Code is as follows: move *. * d :\
Del % 0

You cannot delete do. bat.
Then we need to combine the pipeline operator. |Copy codeThe Code is as follows: del % 0 | move *. * d :\

As shown in the following figure.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.