https://github.com/seb0xff/jxa-filesystem
A lib with basic filesystem operations
https://github.com/seb0xff/jxa-filesystem
javascript-for-automation jxa macos
Last synced: about 1 year ago
JSON representation
A lib with basic filesystem operations
- Host: GitHub
- URL: https://github.com/seb0xff/jxa-filesystem
- Owner: seb0xff
- License: mit
- Created: 2024-04-17T07:10:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-25T22:44:23.000Z (about 1 year ago)
- Last Synced: 2025-01-11T05:28:02.550Z (about 1 year ago)
- Topics: javascript-for-automation, jxa, macos
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JXA Filesystem
This is a simple JXA wrapper over a little confusing official API.
It provides basic functions to work with the filesystem like:
- read/write files
- list directory contents
- create files/directories
## Usage
> [!IMPORTANT]
> It is intended to be used with JXA and built using [jxa-builder](https://github.com/seb0xff/jxa-builder)
```bash
npm i jxa-filesystem
```
```javascript
const fs = Library("jxa-filesystem");
...
```