forked from djberg96/file-find
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
96 lines (72 loc) · 2.56 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
= Description
This is a drop-in replacement for the find module currently in the standard
library. It is modeled on a typical 'find' command found on most Unix systems.
= Installation
gem install file-find
= Synopsis
require 'file/find'
rule = File::Find.new(
:pattern => "*.rb",
:follow => false,
:path => ['/usr/local/lib', '/opt/local/lib']
)
rule.find{ |f|
puts f
}
= Rationale
The current find module in the standard library is inadequate. It is, quite
frankly, not much more than a plain Dir.glob call. This library provides an
interface based on options typically available on your command line 'find'
command, thus allowing you much greater control over how you find your files.
= Options
* atime
* ctime
* follow
* ftype
* inum
* group (name or id)
* maxdepth
* mindepth
* mount
* mtime
* name (or 'pattern')
* path
* perm
* prune
* size
* user (name or id)
In addition to the above options, FileTest methods such as 'readable?' and
'writable?' may be used as keys, with true or false for their values.
See the RDoc documentation for more details about these options.
= Future Plans
None at this time. Please log any feature requests on the project page at:
http://github.com/djberg96/file-find
= Options I won't support
Generally speaking, anything that would require mucking around with C code
or is just too difficult to implement in a cross platform manner will not be
supported. These include the following options:
* acl/xattr - Way too difficult to implement in a cross platform manner, and
a rarely used option in practice.
* cpio/ncpio - I will not shell out to this or any other 3rd party
application.
* ls/print - Use Ruby's builtin printing methods to print as you see fit.
* ok - This is not interactive software.
= Known Issues
The :perm option is limited to 0644 and 0444 on MS Windows.
The :user, :group, and :inum options require the win32-file gem to work
properly on MS Windows. However, it is not officially a dependency.
= Bugs
None that I'm aware of beyond the ones mentioned in the Known Issues. Please
log any bug reports on the project page at:
http://github.com/djberg96/file-find
= Acknowledgements
* Richard Clamp's File::Find::Rule Perl module for additional ideas and
inspiration.
* Bill Kleb for ideas regarding name, group and perm enhancements.
* Hal Fulton for his implementation of symbolic permissions.
= License
Apache-2.0
= Copyright
(C) 2007-2019, Daniel J. Berger, All Rights Reserved
= Author
Daniel J. Berger