Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lpil/filepath
Work with file paths in Gleam!
https://github.com/lpil/filepath
gleam-lang
Last synced: 23 days ago
JSON representation
Work with file paths in Gleam!
- Host: GitHub
- URL: https://github.com/lpil/filepath
- Owner: lpil
- Created: 2023-11-11T16:03:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-19T17:10:42.000Z (3 months ago)
- Last Synced: 2025-01-19T16:17:25.199Z (26 days ago)
- Topics: gleam-lang
- Language: Gleam
- Homepage:
- Size: 16.6 KB
- Stars: 22
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-gleam - filepath - [📚](https://hexdocs.pm/filepath/) - Work with file paths in Gleam! (Packages / File System)
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 filepathpub fn main() {
let path = filepath.join("/home/lucy", "pokemon-cards")
// -> "/home/lucy/pokemon-cards"
}
```Documentation can be found here: .