https://github.com/arnav200525/file-organiser-using-python
This is a simple command-line based file manager built using Python. It allows users to create, read, edit, list, and delete files directly from the terminal. Designed for basic file operations in the current working directory, this tool helps you interact with your file system in a user-friendly way.
https://github.com/arnav200525/file-organiser-using-python
filemanagement fileorganizer python pythonlearning pythonprojects
Last synced: 7 months ago
JSON representation
This is a simple command-line based file manager built using Python. It allows users to create, read, edit, list, and delete files directly from the terminal. Designed for basic file operations in the current working directory, this tool helps you interact with your file system in a user-friendly way.
- Host: GitHub
- URL: https://github.com/arnav200525/file-organiser-using-python
- Owner: arnav200525
- Created: 2025-06-06T04:45:21.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-06-06T04:50:10.000Z (8 months ago)
- Last Synced: 2025-06-06T05:28:37.124Z (8 months ago)
- Topics: filemanagement, fileorganizer, python, pythonlearning, pythonprojects
- Language: Python
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**# 🗂️ Python File Organizer**
A simple command-line tool to manage files in your system using Python. You can create, read, edit, list, and delete files easily with this interactive script.
---
**## 📌 Features**
- 📄 Create a new file
- ✏️ Edit an existing file (overwrite or append)
- 📖 Read contents of a file
- 📁 List all files in the directory
- 🗑️ Delete a file
---
**## 🛠️ Prerequisites**
Before running this program, follow these steps:
1. Create a new folder anywhere on your system.
2. Save this Python script inside that folder.
3. Open your terminal or command prompt or any IDE
4. Navigate to that folder using `cd` command.
5. You're good to go
**## ⚠️ Notes**
1. Files are created inside the folder where the Python script is located.
2. Only file-level operations are supported (not directories).
3. The program automatically handles basic input errors.
4. This is an educational project, ideal for learning file handling in Python.