Posts tagged as:

Directory

In this article I am going to show you how to monitor a folder for changes. A reason why you might want to do this is for example if you want to keep two files in different locations in sync. When the original file is changed it would trigger an event and you can update [...]

{ 0 comments }

Listing files from directories and sub-directories is a common requirement for many developers. In this short tutorial I will show you how to do this in two different ways.
The Directory.GetFiles() Method
This first method is by far the easier of the two, but to implement this you must be working with Microsoft .NET Framework version 2.0 [...]

{ 0 comments }