<div dir="auto">There are hidden directories, and then there are hidden directories :-). It makes sense to me to add an option to the stdlib functions to skip directories (and files) that the system considers hidden, so I guess that means dotfiles on Unix and files with the hidden attribute on Windows. But if you want "smart" matching that has special knowledge of CVS directories and so forth, then that seems like something that would fit better as a library on PyPI.<div dir="auto"><br></div><div dir="auto">The rust "ignore" crate has a pretty good set of semantics, for reference. It's not trivial, but it sure is handy :-):</div><div dir="auto"><br></div><div dir="auto"><a href="https://docs.rs/ignore/0.4.2/ignore/struct.WalkBuilder.html">https://docs.rs/ignore/0.4.2/ignore/struct.WalkBuilder.html</a><br></div><div dir="auto"><br></div><div dir="auto">-n</div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, May 8, 2018, 00:43 Steve Barnes <<a href="mailto:gadgetsteve@live.co.uk">gadgetsteve@live.co.uk</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">In a lot of uses of os.walk it is desirable to skip version control <br>
directories, (which are usually hidden directories), to the point that <br>
almost all of the examples given look like:<br>
<br>
import os<br>
for root, dirs, files in os.walk(some_dir):<br>
     if 'CVS' in dirs:<br>
         dirs.remove('CVS')  # or .svn or .hg etc.<br>
     # do something...<br>
<br>
But of course there are many version control systems to the point that <br>
much of my personal code looks like, (note that I have to use a <br>
multitude of version control systems due to project requirements):<br>
<br>
<br>
import os<br>
vcs_dirs = ['.hg', '.svn', 'CSV', '.git', '.bz']  # Version control <br>
directory names I know<br>
<br>
<br>
for root, dirs, files in os.walk(some_dir):<br>
     for dirname in vcs_dirs:<br>
         dirs.remove(dirname)<br>
<br>
I am sure that I am missing many other version control systems but the <br>
one thing that all of the ones that I am familiar with default to <br>
creating their files in hidden directories. I know that the above <br>
sometimes hits problems on Windows if someone manually created a <br>
directory and you end up with abortions such as Csv\ or .SVN ....<br>
<br>
Since it could be argued that hidden directories are possibly more <br>
common than simlinks, (especially in the Windows world of course), and <br>
that hidden directories have normally been hidden by someone for a <br>
reason it seems to make sense to me to normally ignore them in directory <br>
traversal.<br>
<br>
Obviously there are also occasions when it makes sense to include VCS, <br>
or other hidden, directories files, (e.g. "Where did all of my disk <br>
space go?" or "delete recursively"), so I would like to suggest <br>
including in the os.walk family of functions an additional parameter to <br>
control skipping all hidden directories - either positively or negatively.<br>
<br>
Names that spring to mind include:<br>
  * nohidden<br>
  * nohidden_dirs<br>
  * hidden<br>
  * hidden_dirs<br>
<br>
This change could be made with no impact on current behaviour by <br>
defaulting to hidden=True (or nohidden=False) which would just about <br>
ensure that no existing code is broken or quite a few bugs in existing <br>
code could be quietly fixed, (and some new ones introduced), by <br>
defaulting to this behaviour.<br>
<br>
Since the implementation of os.walk has changed to use os.scandir which <br>
exposes the returned file statuses in the os.DirEntry.stat() the <br>
overhead should be minimal.<br>
<br>
An alternative would be to add another new function, say os.vwalk(), to <br>
only walk visible entries.<br>
<br>
Note that a decision would have to be made on whether to include such <br>
filtering when topdown is False, personally I am tempted to include the <br>
filtering so as to maintain consistency but ignoring the filter when <br>
topdown is False, (or if topdown is False and the hidden behaviour is <br>
unspecified), might make sense if the skipping of hidden directories <br>
becomes the new default (then recursively removing files & directories <br>
would still include processing hidden items by default).<br>
<br>
If this receives a positive response I would be happy to undertake the <br>
effort involved in producing a PR.<br>
-- <br>
Steve (Gadget) Barnes<br>
Any opinions in this message are my personal opinions and do not reflect <br>
those of my employer.<br>
<br>
---<br>
This email has been checked for viruses by AVG.<br>
<a href="http://www.avg.com" rel="noreferrer noreferrer" target="_blank">http://www.avg.com</a><br>
<br>
_______________________________________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org" target="_blank" rel="noreferrer">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer noreferrer" target="_blank">http://python.org/psf/codeofconduct/</a><br>
</blockquote></div>