You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,15 +45,22 @@ Exclude is meant to be used for skipping certain big and uninteresting directori
45
45
46
46
The value of `exclude` will be smartmatched against each IO object found by File::Find. It's recommended that it's passed as an IO object (or a Junction of those) so we avoid silly things like slashes vs backslashes on different platforms.
47
47
48
+
Default is `False`, which means that no files will be excluded.
49
+
48
50
keep-going
49
51
----------
50
52
51
-
Parameter `keep-going` tells `find()` to not stop finding files on errors such as 'Access is denied', but rather ignore the errors and keep going.
53
+
Parameter `keep-going` tells `find()` to not stop finding files on errors such as 'Access is denied', but rather ignore the errors and keep going. Default is `False`
52
54
53
55
recursive
54
56
---------
55
57
56
-
By default, `find` will recursively traverse a directory tree, descending into any subdirectories it finds. This behaviour can be changed by setting `recursive` to a false value. In this case, only the first level entries will be processed.
58
+
By default, `find` will recursively traverse a directory tree, descending into any subdirectories it finds. This behaviour can be changed by setting `recursive` to a false value. In this case, only the first level entries will be processed. Default is `True`.
59
+
60
+
follow-symlinks
61
+
---------------
62
+
63
+
Parameter `follow-symlinks` tells `find()` whether or not it should follow symlinks during recursive searches. This will still return symlinks in its results, if the type parameter allows. The default is `True`.
0 commit comments