Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lpil/filepath

Work with file paths in Gleam!
https://github.com/lpil/filepath

gleam-lang

Last synced: about 2 months ago
JSON representation

Work with file paths in Gleam!

Awesome Lists containing this project

README

        

# filepath

Work with file paths in Gleam!

[![Package Version](https://img.shields.io/hexpm/v/filepath)](https://hex.pm/packages/filepath)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/filepath/)

This package works on both Unix and Windows systems, and can run on both Erlang
or JavaScript runtimes.

```sh
gleam add filepath
```
```gleam
import filepath

pub fn main() {
let path = filepath.join("/home/lucy", "pokemon-cards")
// -> "/home/lucy/pokemon-cards"
}
```

Documentation can be found here: .