walk_skip_hidden#
- astropy.utils.misc.walk_skip_hidden(top, onerror=None, followlinks=False)[source]#
Deprecated since version 6.0: The walk_skip_hidden function is deprecated and may be removed in a future version.
A wrapper for
os.walk
that skips hidden files and directories.This function does not have the parameter
topdown
fromos.walk
: the directories must always be recursed top-down when using this function.See also
os.walk
For a description of the parameters