An open API service indexing awesome lists of open source software.

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.

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.