Exemple #1
0
 /// <summary>
 /// Delete the configuration folder completely, resetting the application status
 /// </summary>
 public void Delete()
 {
     if (_fileAccessor.DirectoryExists(ApplicationConfig.ConfigPath))
     {
         _fileAccessor.DeleteDirectory(ApplicationConfig.ConfigPath, true);
         Logger.LogInfo("SettingsService", "Application settings deleted");
     }
 }