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 (10 months ago)
- Default Branch: main
- Last Pushed: 2024-11-19T10:38:46.000Z (8 months ago)
- Last Synced: 2025-05-07T05:05:05.802Z (2 months ago)
- Topics: file-manipulation, nodejs, npm, npm-package
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/files-guru
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# files-guru
  

  




---
**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");
```