A console-based task manager built in C++ for learning data structures and STL containers. Features clean output, file persistence, and easy task management.
- โ Create tasks with description and status
- ๐ Display all tasks in formatted list
- โ Mark tasks as completed/incompleted
- โ๏ธ Edit existing task descriptions
- ๐ Search tasks by keyword
- ๐๏ธ Delete tasks from list
- ๐พ File persistence - tasks saved between sessions
- ๐ View task statistics (completed/pending)
- ๐จ Colorful terminal interface with emojis
- โก Real-time command processing
- ๐ก๏ธ Comprehensive error handling and input validation
- ๐ Built-in help system
- ๐งน Console clearing for better UX
- C++17
- Standard Template Library (STL)
- File I/O operations
- Command-line interface
# Clone the repository
git clone https://github.com/Pupler/CPP-Todo-Manager.git
# Compile and run
cd CPP-Todo-Manager
g++ main.cpp -o todo
./todolist # Show all tasks with statistics
add # Add a new task
complete [number] # Mark task as completed
uncomplete [number] # Mark task as incomplete
edit [number] # Edit task description
search [text] # Search in task descriptions
delete [number] # Delete a task
help # Show available commands
clear # Clear console screen
exit # Quit program- Tasks are automatically saved to
tasks.txtafter every modification - Data loads automatically on program startup
- Format:
description|status|timestamp(e.g., Buy milk|0|1765367015)
This project is licensed under the MIT License - see the LICENSE file for details.