Re: glob's new include_hidden parameter
Eryk Sun <[email protected]> Mon, 12 Sep 2022 20:48:06 -0500
| Newsgroups | gmane.comp.python.devel |
|---|---|
| Message-ID | <CACL+1asi1a15U5=svgEdpzLcLKtQ-+1VadqGZUuAdq41GvT4CA@mail.gmail.com> |
On 9/12/22, Mats Wichmann <[email protected]> wrote: > > If `include_hidden` is true, the patterns '*', '?', '**' will > match hidden directories. Shouldn't this explain what a "hidden directory" is? For example, a Windows user may think this means a directory with FILE_ATTRIBUTE_HIDDEN set, but that's not what's meant here. Also, I think it should note that enabling include_hidden negates the earlier claim that "files beginning with a dot (.) can only be matched by patterns that also start with a dot". For example, glob.glob('*', include_hidden=True) includes all of the conventionally hidden directories and hidden files in the current directory.