coreyja / crowd-source-bytes

https://coreyja.com/bytes
13 stars 2 forks source link

💡 Byte Idea: File Renamer. #9

Open Seif-Mamdouh opened 1 month ago

Seif-Mamdouh commented 1 month ago

Description

Build a command-line tool to automate the renaming of multiple files in a directory.

Goal

The goal is to create a versatile and user-friendly CLI tool that helps users efficiently rename files in bulk. By integrating regex functionality, users can match and modify filenames based on patterns.

Features

Extra Feature (Optional)

Useful Rust Crates

regex: For pattern matching and replacing file names based on regex rules. clap: For parsing command-line arguments to specify directory, etc. walkdir: To recursively traverse directories and find files for renaming.