Finds files and directories based on different criteria
via an intuitive fluent interface. 👑 Written in Nim language
nimble install find
- Fluent Interface
-
Driver
Local Filesystem -
Driver
SSH via libssh -
Driver
FTP/SFTP -
Driver
WebDAV - Open Source |
MIT
License - Written in Nim language
Get all .txt
files from directory
let res: Results = finder("./examples").name("*.txt").get
Get all .txt
files from directory using size
criteria
let res = finder("./examples").name("*.txt").size(< 10.mb).get
for file in res.files():
echo file.getSize
Find files using regular expression
let res = finder("./examples").name(re"20[\w-]+\.txt").get
for file in res.files:
echo file.getName
For more examples check /tests | API reference
- 🐛 Found a bug? Create a new Issue
- 👋 Wanna help? Fork it!
- 😎 Get €20 in cloud credits from Hetzner
- 🥰 Donate via PayPal address
Find | MIT license. Made by Humans from OpenPeeps.
Copyright © 2023 OpenPeeps & Contributors — All rights reserved.