Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 316345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:22:33+00:00 2026-05-12T08:22:33+00:00

I’m trial and erroring a trivial batch script: I need to execute the .bat

  • 0

I’m trial and erroring a trivial batch script:

I need to execute the .bat and have it iterate through all the files in the current directory and delete all files (and subfolders) except for itself and two other files.

This works:

@echo off
for /f %%f in ('dir /b c:\d\test') do (del %%f)

This doesn’t:

@echo off
for /f %%f in ('dir /b c:\d\test') do (if (true) (del %%f))

Why? (in place of “if (true)” I’d like to say “if not filename==’foo’ or filename==’bar'” etc)

Many thank you’s

EDIT: @rangerchris, perfect, thanks. now how to include folders and subfolderrs in the iteration?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T08:22:33+00:00Added an answer on May 12, 2026 at 8:22 am

    Pong, in this code, fill the “Keep” variable with the needed filenames.

    I took for granted that those files cound be anywhere so in the test I really check the name+extension only, not the path, so they could be inany sub-path.

    EDIT: Ok, there goes the revised more deeply tested version for Pong. Sorry for posting too hastily, wanted to help but guess I didn’t test my script enough.

    Although this time, allows me to show an example or recursive programming (function :CleanDirs calling itself) in XP batch programming 🙂

    Cleanup.cmd:

    @echo off
    set Keep="%~nx0" "file1.ext" "file2.ext"
    set StartDir=%~dp0
    call :CleanDirs "%StartDir:~0,-1%"
    exit /b 0
    :CleanDirs
        call :CleanFiles "%~1"
        for /f "delims=" %%d in ('dir /ad /b "%~1"2^>nul') do call :CleanDirs "%~1\%%~d"
        if exist "%~1" rmdir /Q "%~1">nul 2>nul
        exit /b 0
    :CleanFiles
        for /f "delims=" %%f in ('dir /a-d /b "%~1"2^>nul') do (
            set _keep=
            for %%k in (%Keep%) do if /i "%%~nxf"=="%%~k" set _keep=yes
            if not defined _keep del /f "%~1\%%~f" 2>nul
        )
        exit /b 0
    

    Still, hope this helps even more.

    Notes

    set Keep= : Adjust with any filename you need to keep. The script will keep the subfolders holding those files.

    set StartDir=%~dp0 : Will ajust itself to whereever the script is located. If you want to move the script elsewhere, you could call it with a directory name as argument and change assignation here as =”%~1″

    Coding tips

    %*~*1 : (Tild) remove enclosing quotes. Will not remove ALL quotes, only one leading/Trailing.

    %~nx0 : (tild n x)gets the filename+ext of the batchfile. Warning, this will change if this is put into a function. Adjust as needed.

    %~dp0 : (tild d p) Gets the drive/full path (including trailing baskslash (\) of the batchfile. Warning, this will change if this is put into a function. Adjust as needed.

    %StartDir:~0,-1% : (Tild Start,Stop) Gets a substring of the variable, here from position 0 to last character minus one position (used to strip trailing \).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 176k
  • Answers 176k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Registers in Vim let you run actions or commands on… May 12, 2026 at 3:15 pm
  • Editorial Team
    Editorial Team added an answer In this case, what Apple really means is the complete… May 12, 2026 at 3:15 pm
  • Editorial Team
    Editorial Team added an answer Found the answer to my problem here In a nutt-shell… May 12, 2026 at 3:15 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.