find

Finds files and directories based on different criteria via an intuitive fluent interface

Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version 0.1.0
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-07-21 05:25

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

API reference

Github Actions Github Actions

😍 Key Features

  • [x] Fluent Interface
  • [x] Driver Local Filesystem
  • [ ] Driver SSH via libssh
  • [ ] Driver FTP/SFTP
  • [ ] Driver WebDAV
  • [x] Open Source | MIT License
  • [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

🎩 License

Find | MIT license. Made by Humans from OpenPeeps.
Copyright © 2023 OpenPeeps & Contributors — All rights reserved.