Introduction
Here you will some tips in C# including how to create a new folder, how to find if a file or folder exists or not, create a registry key and how to display time in a status bar.
Create a New Folder
System.IO.Directory.CreateDirectory(@"c:\NewFolder");
System.IO.Directory.CreateDirectory(@"c:\NewFolder\NewSubFolder");
Determine if a File Exists
bool