File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -95,11 +95,11 @@ func (p *Path) ReadDirRecursive() (PathList, error) {
9595// ReadDirRecursiveFiltered returns a PathList containing the content of the directory
9696// and its subdirectories pointed by the current Path, filtered by the given skipFilter
9797// and filters:
98- // - `recursionFilter` is a filter that is checked to determine if the subdirectory must
99- // by visited recursively (if the filter rejects the entry, the entry is not visited
100- // but can still be added to the result)
101- // - `filters` are the filters that are checked to determine if the entry should be
102- // added to the resulting PathList
98+ // - `recursionFilter` is a filter that is checked to determine if the subdirectory must
99+ // by visited recursively (if the filter rejects the entry, the entry is not visited
100+ // but can still be added to the result)
101+ // - `filters` are the filters that are checked to determine if the entry should be
102+ // added to the resulting PathList
103103func (p * Path ) ReadDirRecursiveFiltered (recursionFilter ReadDirFilter , filters ... ReadDirFilter ) (PathList , error ) {
104104 infos , err := ioutil .ReadDir (p .path )
105105 if err != nil {
You can’t perform that action at this time.
0 commit comments