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