File IO Application

File IO

Overview

The main objective of this application was to use a File IO to read and write to a text file. It had five requirements, it had to start by reading a file, allow the user to add to the resulting list, remove from the list, display the list, and then end the program and re-write the text file with the new information. My application reads a text file of a movie script, then prompts the user to edit the text file before typing "END" to write the new text to the file and close.

Tools and Technologies

This project was created with C# in Visual Studio 2017

Challenges

The most difficult part of this assignment was catching any exceptions or errors that could break the program, such as there being no file to read or the user typing invalid input. This was handled using try, catch, and finally (exception handlers), and some conditionals.

View Code