Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arctictechnology/bulkfilechanger
This is a simple script that allows you to change or remove characters in the name of all files in a directory and its sub-directories.
https://github.com/arctictechnology/bulkfilechanger
bulk bulk-operation filename filenames-change
Last synced: 3 days ago
JSON representation
This is a simple script that allows you to change or remove characters in the name of all files in a directory and its sub-directories.
- Host: GitHub
- URL: https://github.com/arctictechnology/bulkfilechanger
- Owner: ArcticTechnology
- License: mit
- Created: 2022-05-28T05:20:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-21T03:56:18.000Z (almost 2 years ago)
- Last Synced: 2024-12-10T19:31:18.388Z (30 days ago)
- Topics: bulk, bulk-operation, filename, filenames-change
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BulkFileChanger
This is a simple script that allows you to change or remove characters in the name of all files in a directory and its sub-directories. Example use case: say you have a bunch of files that have "test-" in front of the names of every single file in the directory. You want to change all files with that prefix to "prod-". You can use this script to make the change all in one go.
* Github repo: https://github.com/ArcticTechnology/BulkFileChanger
* PyPi: https://pypi.org/project/BulkFileChanger/## Installation
There are a couple of options to install this app:
* Pip Install - This app is hosted on PyPi and can be installed with the following command:
```
pip3 install BulkFileChanger
```
* Local Install - Alternatively, you can download or git clone the Github repo and install it locally with the following:
```
git clone https://github.com/ArcticTechnology/BulkFileChanger.git
cd BulkFileChanger
pip3 install -e .
```
To uninstall this app:
```
pip3 uninstall BulkFileChanger
```
* If you used the local install option, you will also want to delete the ```.egg-info``` file located in the ```src/``` directory of the package. This gets created automatically with ```pip3 install -e .```.## Usage
After installation, you have a couple ways to run this app.
* Run this app from the terminal with this command:
```
bulkfilechanger
```
* Run this app with the python command ```python3 -m```:
```
python3 -m bulkfilechanger
```
* You can also import the package resources and run them in your own project:
```
from bulkfilechanger import *
bulkfilechanger = BulkFileChanger()
bulkfilechanger.run()
```## Support and Contributions
Our software is open source and free for public use. If you found any of these repos useful and would like to support this project financially, feel free to donate to our bitcoin address.Bitcoin Address 1: 1GZQY6hMwszqxCmbC6uGxkyD5HKPhK1Pmf
![alt text](https://github.com/ArcticTechnology/BitcoinAddresses/blob/main/btcaddr1.png?raw=true)