dir_walker alternatives and similar packages
Based on the "Files and Directories" category.
Alternatively, view dir_walker alternatives based on common mentions on social networks and blogs.
-
ex_guard
ExGuard is a mix command to handle events on file system modifications -
eye_drops
Configurable Elixir mix task to watch file changes and run the corresponding command. -
librex
Elixir library to convert office documents to other formats using LibreOffice. -
elixgrep
An elixir framework to implement concurrent versions of common unix utilities, grep, find, etc.. -
Belt
Extensible file upload library with support for SFTP, S3 and Filesystem storage.
Collect and Analyze Billions of Data Points in Real Time
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of dir_walker or a related project?
Popular Comparisons
README
DirWalker
DirWalker lazily traverses one or more directory trees, depth first, returning successive file names.
Initialize the walker using
{:ok, walker} = DirWalker.start_link(path, [, options ]) # or [path, path...]
Then return the next n
path names using
paths = DirWalker.next(walker [, n \\ 1])
Successive calls to next
will return successive file names, until
all file names have been returned.
These methods have also been wrapped into a Stream resource.
paths = DirWalker.stream(path [, options]) # or [path,path...]
By default DirWalker will follow any symlinks found. With the include_stat
option, it will instead simply return the File.Stat
of the symlink
and it is up to the calling code to handle symlinks.
options
is a map containing zero or more of:
include_stat: true
Return tuples containing both the file name and the File.Stat
structure for each file. This does not incur a performance penalty
but obviously can use more memory. When this option is specified,
DirWalker will not follow symlinks.
include_dir_names: true
Include the names of directories that are traversed (normally just the names of regular files are returned). Note that the order is such that directory names will typically be returned after the names of files in those directories.
matching:
regex
Only file names matching the regex will be returned. Does not affect directory traversals.