Cross platform hidden file detection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:26:08Z http://stackoverflow.com/feeds/question/284115 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/284115/cross-platform-hidden-file-detection 3 Cross platform hidden file detection Kai 2008-11-12T14:35:29Z 2008-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 -1 Answer by S.Lott for Cross platform hidden file detection S.Lott 2008-11-12T15:47:54Z 2008-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#284439 1 Answer by Ali A for Cross platform hidden file detection Ali A 2008-11-12T16:11:11Z 2008-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>