globlin_fs

Package Version Hex Docs

This package adds onto the functionality in the globlin package by adding file system globbing. The main reason to keep it separate is to not require simplifile in the original globlin package so it can be used in the browser.

Add Dependency

gleam add globlin_fs

Example

 import gleam/io
 import gleam/list
 import gleam/string
 import globlin
 import globlin_fs

 pub fn main() {
   let assert Ok(pattern) = globlin.new_pattern("**/*.gleam")
   case globlin_fs.glob(pattern) {
     Ok(files) -> {
       files
       |> list.sort(string.compare)
       |> list.each(io.println)
     }
     Error(err) -> {
       io.print("File error: ")
       io.debug(err)
       Nil
     }
   }
 }

Further documentation can be found at https://hexdocs.pm/globlin_fs.

Development

gleam test  # Run the tests
Search Document