Task Manager is a simple command-line application in Java that allows users to add, view, and delete tasks efficiently. Tasks are stored in a text file (tasks.txt
), ensuring persistence even after the program exits.
β
Add new tasks with a name, description, and deadline
β
View all saved tasks from the file
β
Delete a specific task by name
β
File handling for persistent task storage
- Java (Core Java, File Handling)
- BufferedReader & BufferedWriter for file operations
- Scanner for user input