Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Delete all the files in folder except one type of file  (Read 4861 times)

0 Members and 1 Guest are viewing this topic.

assu_1978

    Topic Starter


    Starter

    • Experience: Beginner
    • OS: Windows XP
    Delete all the files in folder except one type of file
    « on: July 22, 2013, 05:28:30 PM »
    Is there a way to delete all the files in folder  except one type of file extension (*.zip) using batch file

    foxidrive



      Specialist
    • Thanked: 268
    • Experience: Experienced
    • OS: Windows 8
    Re: Delete all the files in folder except one type of file
    « Reply #1 on: July 22, 2013, 07:20:55 PM »
    Code: [Select]
    @echo off
    pushd "c:\folder" && (
    attrib +h *.zip
    del *.*?
    attrib -h *.zip
    popd
    )

    assu_1978

      Topic Starter


      Starter

      • Experience: Beginner
      • OS: Windows XP
      Re: Delete all the files in folder except one type of file
      « Reply #2 on: July 23, 2013, 09:37:23 AM »
      It is working fine, thanks you   :)