Is there a way to have Windows automatically hide any file that is dot prefixed (e.g. ".svn"), as it's done in Linux?
|
feedback
|
|
After some problems (the attrib command doesn't allow some wildcards) I came up with this line:
Just put it a Batch File (.bat) and it does the trick (for that directory). If you want this for a few directies, just set it to run once a day on that directories. Hope this is what you need. | ||||
|
feedback
|
|
Windows uses a hidden file property, it is pretty straightforward to run a script that would find any file with a dot prefix and assign it the hidden property (e.g. using attrib). | |||
|
feedback
|