Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muhammad-tayyab-awan/files-guru
Npm Package to manipulate files
https://github.com/muhammad-tayyab-awan/files-guru
file-manipulation nodejs npm npm-package
Last synced: 2 months ago
JSON representation
Npm Package to manipulate files
- Host: GitHub
- URL: https://github.com/muhammad-tayyab-awan/files-guru
- Owner: Muhammad-Tayyab-Awan
- License: mit
- Created: 2024-09-21T08:31:44.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-01T04:04:33.000Z (3 months ago)
- Last Synced: 2024-10-14T20:40:46.002Z (2 months ago)
- Topics: file-manipulation, nodejs, npm, npm-package
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/files-guru
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# files-guru
#### version 1.0.3
**files-guru** is a lightweight and efficient file management tool for Node.js applications, designed to simplify operations such as moving, renaming, and manipulating files.
## Features
- Lightweight and fast
- Suitable for various file operations## Installation
Install the package using npm:
```bash
npm install files-guru
```
## How to Use```js
import filesGuru from "files-guru";// first funtion to rename all the files in a directory according to the given name by default it will rename all files with name as File [filenumber].[extension]
filesGuru.renameAllFiles("here should be the path to that directory","here should be the neName");
```