Get a List of Files From a Directory Using C#
C# provides a lot of tools to make working with the local file system much easier. For example, recently I had to get a list of files that are in a given directory. Luckily with C#, inside of the System.IO namespace is the Directory helper object. This object has a lot of static methods that…