Skip to content

Commit 0294be5

Browse files
authored
Update README.md (DhanushNehru#325)
1 parent 734eabe commit 0294be5

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

Arrange It/README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ With the help of this script, files can be moved automatically to the folder tha
55
## New Feature: Custom Folder Configuration
66

77
-Now, you can customize how files are arranged by defining your own folder structure and file extensions using a config.json file. This allows for more flexibility without needing to modify the Python code itself.
8-
python arrangeit.py
8+
`python arrangeit.py`
99

1010
# How To Use the config.json File
1111

@@ -14,28 +14,33 @@ python arrangeit.py
1414

1515
Example config.json:
1616

17+
```bash
1718
{
1819
"Programming Files": ["ipynb", "py", "java", "cs", "js"],
1920
"Music": ["mp3", "wav", "aac"],
2021
"Videos": ["mp4", "mkv", "avi"],
2122
"Pictures": ["jpeg", "png", "gif"],
2223
"Documents": ["pdf", "docx", "xlsx"]
2324
}
25+
```
2426

2527
# How To Run
2628

2729
Put the script and the config.json file in the folder where you want to automatically move the files.
2830

2931
Run the following command from the terminal:
3032

33+
```bash
3134
python arrangeit.py
32-
35+
```
3336

3437
The script will create folders and move files based on the folder-extension mappings in the config.json file.
3538

3639

3740
# Benefits
3841

39-
Customizable: Easily modify the config.json file to tailor the organization to your preferences.
40-
User-Friendly: No need to modify Python code—just update the config.json file.
41-
Scalable: Works with different folder structures for different use cases.
42+
**Customizable:** Easily modify the config.json file to tailor the organization to your preferences.
43+
44+
**User-Friendly:** No need to modify Python code—just update the config.json file.
45+
46+
**Scalable:** Works with different folder structures for different use cases.

0 commit comments

Comments
 (0)