https://github.com/elixir-explorer/fss
FSS - File system specs is a small abstraction to describe how to access files on local or remote file systems.
https://github.com/elixir-explorer/fss
elixir-explorer livebook
Last synced: 3 months ago
JSON representation
FSS - File system specs is a small abstraction to describe how to access files on local or remote file systems.
- Host: GitHub
- URL: https://github.com/elixir-explorer/fss
- Owner: elixir-explorer
- License: apache-2.0
- Created: 2023-08-08T20:00:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-18T14:04:08.000Z (5 months ago)
- Last Synced: 2025-03-25T07:22:21.938Z (4 months ago)
- Topics: elixir-explorer, livebook
- Language: Elixir
- Homepage:
- Size: 37.1 KB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# FSS - File system specifications
[](https://hexdocs.pm/fss)
[](https://github.com/elixir-explorer/fss/actions)`FSS` is a small abstraction to describe how to access files in different filesystems.
The docs can be found at .
## Installation
The package can be installed by adding `fss` to your list of dependencies
in `mix.exs`:```elixir
def deps do
[
{:fss, "~> 0.1.0"}
]
end
```Or by using `Mix.install/2`:
```elixir
Mix.install([{:fss, "~> 0.1.0"}])
```## License
Copyright 2023 Philip Sampaio, José Valim
Copyright 2025 José ValimLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.