I currently have to code to allow me to read all of the files of a folder and write them to the console. Below, I also have got the code to select individual files from a di
User the FolderBrowserDialog
FolderBrowserDialog
FolderBrowserDialog b = new FolderBrowserDialog(); if(b.ShowDialog() == DialogResult.OK) { var folderName = b.SelectedPath; }