Cross platform hidden file detection - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T00:26:08Zhttp://stackoverflow.com/feeds/question/284115http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/284115/cross-platform-hidden-file-detection3Cross platform hidden file detectionKai2008-11-12T14:35:29Z2008-11-12T16:11:11Z
<p>What is the best way to do cross-platform handling of hidden files?
(preferably in Python, but other solutions still appreciated)</p>
<p>Simply checking for a leading '.' works for *nix/Mac, and file attributes work on Windows. However, this seems a little simplistic, and also doesn't account for alternative methods of hiding things (.hidden files, etc.). Is there a standard way to deal with this?</p>
http://stackoverflow.com/questions/284115/cross-platform-hidden-file-detection/284363#284363-1Answer by S.Lott for Cross platform hidden file detectionS.Lott2008-11-12T15:47:54Z2008-11-12T15:47:54Z<p>"Is there a standard way to deal with this?" Yes. Use a standard (i.e., POSIX-compliant) OS.</p>
<p>Since Windows is non-standard -- well -- there's no applicable standard. Wouldn't it be great if there was? I feel your pain.</p>
<p>Anything you try to do that's cross-platform like that will have Win32 oddities.</p>
<p>Your solution is -- for the present state of affairs -- excellent. At some point in the future, Microsoft may elect to write a POSIX-compliant OS. Until then, you're coping well with the situation.</p>
http://stackoverflow.com/questions/284115/cross-platform-hidden-file-detection/284439#2844391Answer by Ali A for Cross platform hidden file detectionAli A2008-11-12T16:11:11Z2008-11-12T16:11:11Z<p>We actually address this in a project we write. What we do is have a number of different "hidden file checkers" that are registered with a main checker. We pass each file through these to see if it should be hidden or not.</p>
<p>These checkers are not only for different OS's etc, but we plug into version control "ignored" files, and optional user overrides by glob or regular expression.</p>
<p>It mostly amounts to what you have done, but in a pluggable, flexible and extensible way.</p>