pub fn iter_dirs(
dir: impl AsRef<Path>,
include_globs: Option<&[&str]>,
list_options: Option<ListOptions<'_>>,
) -> Result<impl Iterator<Item = SPath>>Expand description
Returns an iterator over directories in the specified dir filtered optionally by include_globs
and list_options. This implementation uses the internal GlobsDirIter.