find
Finds files and directories based on different criteria via an intuitive fluent interface
Summary
| Latest Version | 0.1.0 |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:25 |
Tags
Authors
- George Lemon
Installation
nimble install find
choosenim install find
git clone https://github.com/openpeeps/find
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| find | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Dependencies
| Package | Version | Optional |
|---|---|---|
| nim >= | 2.0.0 | No |
Source
| Repository | https://github.com/openpeeps/find |
|---|---|
| Homepage | https://github.com/openpeeps/find |
| Registry Source | nimble_official |
README

Finds files and directories based on different criteria
via an intuitive fluent interface. 👑 Written in Nim language
nimble install find
😍 Key Features
- [x] Fluent Interface
- [x]
DriverLocal Filesystem - [ ]
DriverSSH via libssh - [ ]
DriverFTP/SFTP - [ ]
DriverWebDAV - [x] Open Source |
MITLicense - [x] Written in Nim language
Examples
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
❤ Contributions & Support
- 🐛 Found a bug? Create a new Issue
- 👋 Wanna help? Fork it!
- 😎 Get €20 in cloud credits from Hetzner
- 🥰 Donate via PayPal address
🎩 License
Find | MIT license. Made by Humans from OpenPeeps.
Copyright © 2023 OpenPeeps & Contributors — All rights reserved.