
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@evoo/plugin-file-ops
Advanced tools
The File Ops plugin for the Evoo CLI provides a set of powerful and convenient jobs for performing common file system operations. It allows you to move, copy, remove, create, and rename files and directories directly from your `evoo.json` configuration.
The File Ops plugin for the Evoo CLI provides a set of powerful and convenient jobs for performing common file system operations. It allows you to move, copy, remove, create, and rename files and directories directly from your evoo.json configuration.
fsMove, fsRemove, and fsRename, ensuring that you don't make unintended changes.To use the File Ops plugin, you will need to add jobs of the appropriate type to your evoo.json configuration file.
See the Job's common properties.
fsMove JobMoves a file or directory from a source to a destination.
| Property | Type | Required | Description |
|---|---|---|---|
type | "fsMove" | ✔️ | Specifies the job type. |
src | string | ✔️ | The path of the file or directory to move. |
dest | string | ✔️ | The destination path. |
{
"plugins": ["file-ops"],
"jobs": [
{
"type": "fsMove",
"src": "./old/path/to/file.txt",
"dest": "./new/path/to/file.txt"
}
]
}
fsCopy JobCopies a file or directory from a source to a destination.
| Property | Type | Required | Description |
|---|---|---|---|
type | "fsCopy" | ✔️ | Specifies the job type. |
src | string | ✔️ | The path of the file or directory to copy. |
dest | string | ✔️ | The destination path. |
{
"plugins": ["file-ops"],
"jobs": [
{
"type": "fsCopy",
"src": "./source/file.txt",
"dest": "./destination/file.txt"
}
]
}
fsRemove JobRemoves a file or directory.
| Property | Type | Required | Description |
|---|---|---|---|
type | "fsRemove" | ✔️ | Specifies the job type. |
path | string | ✔️ | The path of the file to be removed. |
{
"plugins": ["file-ops"],
"jobs": [
{
"type": "fsRemove",
"path": "./path/to/file.txt"
}
]
}
fsMkdir JobCreates a new directory.
| Property | Type | Required | Description |
|---|---|---|---|
type | "fsMkdir" | ✔️ | Specifies the job type. |
path | string | ✔️ | The path of the directory to create. |
{
"plugins": ["file-ops"],
"jobs": [
{
"type": "fsMkdir",
"path": "./new/directory"
}
]
}
fsRename JobRenames a file or directory.
| Property | Type | Required | Description |
|---|---|---|---|
type | "fsRename" | ✔️ | Specifies the job type. |
oldPath | string | ✔️ | The original path of the file. |
newPath | string | ✔️ | The new path for the file. |
{
"plugins": ["file-ops"],
"jobs": [
{
"type": "fsRename",
"oldPath": "./path/to/old-name.txt",
"newPath": "./path/to/new-name.txt"
}
]
}
FAQs
The File Ops plugin for the Evoo CLI provides a set of powerful and convenient jobs for performing common file system operations. It allows you to move, copy, remove, create, and rename files and directories directly from your `evoo.json` configuration.
We found that @evoo/plugin-file-ops demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.