This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.araujo
Recipients eric.araujo, ncoghlan, vstinner
Date 2011-11-05.16:07:57
SpamBayes Score 0.0001518582
Marked as misclassified No
Message-id <1320509279.03.0.0802549032559.issue13229@psf.upfronthosting.co.za>
In-reply-to
Content
During the discussion about adding a chowntree function to shutil (http://mail.python.org/pipermail/python-dev/2011-May/111661.html and ), Victor suggested this:

> I don't like the idea of a recursive flag. I would prefer a "map-like" function to "apply" a
> function on all files of a directory. Something like shutil.apply_recursive(shutil.chown)...
> ... maybe with options to choose between deep-first search and breadth-first search, filter
> (filenames, file size, files only, directories only, other attributes?), directory before
> files (may be need for chmod(0o000)), etc.

Such a function removes the need for copytee, rmtree, dosomethingelsetree, etc.  When I first read this feature request I thought it was the same idea, but after reading it again I see that you propose a function that walks and returns, not a function that walks and applies a callback.  Both use cases are important, so an apply_tree function could be implemented on top of your filter_walk (I’ll open another report if we reach agreement on the idea of these two functions working together).
History
Date User Action Args
2011-11-05 16:07:59eric.araujosetrecipients: + eric.araujo, ncoghlan, vstinner
2011-11-05 16:07:59eric.araujosetmessageid: <1320509279.03.0.0802549032559.issue13229@psf.upfronthosting.co.za>
2011-11-05 16:07:58eric.araujolinkissue13229 messages
2011-11-05 16:07:57eric.araujocreate