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

Author Topic: deleting hidden files in DOS  (Read 33750 times)

0 Members and 1 Guest are viewing this topic.

jas11hng

  • Guest
deleting hidden files in DOS
« on: June 10, 2004, 06:31:55 PM »
how in the world can i delete hidden files in DOS?
i dont know where to start ???

dl65

  • R.I.P.


  • Prodigy

    Thanked: 18
    Re: deleting hidden files in DOS
    « Reply #1 on: June 10, 2004, 07:03:44 PM »
    Jas11hng......How about starting by telling us what the O/S is your using and why are you trying to delete hidden files with DOS......and next time only post your request once...

    let us know

    dl65  ???
    « Last Edit: June 10, 2004, 07:03:59 PM by dl65 »
    If you don't know the answer, it isn't a dumb question.

    TheHoFL



      Intermediate

      Thanked: 5
      Re: deleting hidden files in DOS
      « Reply #2 on: May 29, 2009, 11:26:24 AM »
      Woo hoo! I am resurrecting the dead here.

      This worked for me:
      Code: [Select]
      @echo off

      del /Q /A:H "PATH\filename.ext"

      echo on

      -HoFL

      Edit: I was running XP Pro for this test.
      All your dreams can come true if you have the courage to pursue them.  - Walt Disney

      Rob Pomeroy



        Prodigy

      • Systems Architect
      • Thanked: 124
        • Me
      • Experience: Expert
      • OS: Other
      Re: deleting hidden files in DOS
      « Reply #3 on: May 30, 2009, 10:35:17 AM »
      That is in poor taste.
      Only able to visit the forums sporadically, sorry.

      Geek & Dummy - honest news, reviews and howtos

      billrich

      • Guest
      Re: deleting hidden files in DOS
      « Reply #4 on: May 30, 2009, 12:33:39 PM »
      C:\>del  /s /F  /AH   gibberish.*


      C:\>del /?
      Deletes one or more files.

      DEL [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names
      ERASE [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names

        names         Specifies a list of one or more files or directories.
                      Wildcards may be used to delete multiple files. If a
                      directory is specified, all files within the directory
                      will be deleted.

        /P            Prompts for confirmation before deleting each file.
        /F            Force deleting of read-only files.
        /S            Delete specified files from all subdirectories.
        /Q            Quiet mode, do not ask if ok to delete on global wildcard
        /A            Selects files to delete based on attributes
        attributes    R  Read-only files            S  System files
                      H  Hidden files               A  Files ready for archiving
                      -  Prefix meaning not

      If Command Extensions are enabled DEL and ERASE change as follows:

      The display semantics of the /S switch are reversed in that it shows
      you only the files that are deleted, not the ones it could not find.

      C:\>del  /s /F  /AH   gibberish.*

      C:\>

      computeruler



        Egghead

        Thanked: 63
        • Yes
        • Yes
      • Experience: Experienced
      • OS: Mac OS
      Re: deleting hidden files in DOS
      « Reply #5 on: May 30, 2009, 12:40:23 PM »
      please do not bump stuff thats 5 years old.  Even if you know the answer. 

      TheHoFL



        Intermediate

        Thanked: 5
        Re: deleting hidden files in DOS
        « Reply #6 on: May 30, 2009, 06:00:07 PM »
        I don't think it's all that bad. What if some one was just thinking about this exact issue?  :D
        All your dreams can come true if you have the courage to pursue them.  - Walt Disney

        computeruler



          Egghead

          Thanked: 63
          • Yes
          • Yes
        • Experience: Experienced
        • OS: Mac OS
        Re: deleting hidden files in DOS
        « Reply #7 on: May 30, 2009, 06:13:06 PM »
        Then they can ask themselves