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: about 1 month 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-23T13:04:47.000Z (4 months ago)
- Last Synced: 2024-09-14T06:50:50.247Z (about 2 months ago)
- Topics: gleam-lang
- Language: Gleam
- Homepage:
- Size: 14.6 KB
- Stars: 17
- 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: .