Encryption encryption = new Encryption(); //Trial Mode
//Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "TestDirectory");
Directory.CreateDirectory(path);
string testFile = Path.Combine(path, "testfile.txt");
File.WriteAllText(testFile,"This is a test");
encryption.SecureDirectoryErase(path);
bool directoryExists = Directory.Exists(path);
Console.WriteLine("Directory Exists: {0}", directoryExists);