File tree 1 file changed +5
-5
lines changed
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) {
95
95
// ReadDirRecursiveFiltered returns a PathList containing the content of the directory
96
96
// and its subdirectories pointed by the current Path, filtered by the given skipFilter
97
97
// 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
103
103
func (p * Path ) ReadDirRecursiveFiltered (recursionFilter ReadDirFilter , filters ... ReadDirFilter ) (PathList , error ) {
104
104
infos , err := ioutil .ReadDir (p .path )
105
105
if err != nil {
You can’t perform that action at this time.
0 commit comments