Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Can you make a file hidden by default?

  • 25-10-2007 5:46pm
    #1
    Moderators, Motoring & Transport Moderators, Music Moderators Posts: 12,616 Mod ✭✭✭✭


    I have this Dj mixing program for mixing mp3's. Every time you play a song, it creates a separate file, with the same as the song, but with the extension of .tqd instead of .mp3

    It's annoying as when you browse through windows. I can get around it by right clicking the file and selecting "Hidden" but every time I play a new file I have to do it each time.

    Is there any way to make a certain type of file hidden by default?
    Thanks


Comments

  • Registered Users, Registered Users 2 Posts: 2,471 ✭✭✭majiktripp


    Not that I'm aware off, you could create a batch file and run it once a week to set attrib +h *.tqd (or .mp3) and run it once a week.That would make all tqd files hidden in whatever folder you specifiy.


  • Moderators, Motoring & Transport Moderators, Music Moderators Posts: 12,616 Mod ✭✭✭✭Zascar


    Thanks thats a good idea...

    Can you please explain how I do this? I've no idea how to create a batch file...

    Thanks


  • Registered Users, Registered Users 2 Posts: 2,931 ✭✭✭Ginger


    Its just a text file containing some DOS commands

    So for example

    this should work
    
    attrib +h C:\yourpath\*.tqd
    
    

    Just adjust the path to your files and save the file as HideThosePeskyFiles.bat :)


  • Moderators, Motoring & Transport Moderators, Music Moderators Posts: 12,616 Mod ✭✭✭✭Zascar


    Cool thanks guys.

    Will this to all subfolders as well?


  • Closed Accounts Posts: 12,401 ✭✭✭✭Anti


    Yep, if you list the parent directory say for example c:\songs Then everything inside will be hidden too.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 2,931 ✭✭✭Ginger


    Zascar wrote: »
    Cool thanks guys.

    Will this to all subfolders as well?
    
    attrib +h C:\yourpath\*.tqd /s
    
    

    More on the attrib program

    http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/attrib.mspx?mfr=true


  • Moderators, Motoring & Transport Moderators, Music Moderators Posts: 12,616 Mod ✭✭✭✭Zascar


    Cheers guys - worked like a charm!


  • Registered Users, Registered Users 2 Posts: 2,471 ✭✭✭majiktripp


    Yer welcome!


Advertisement