A static class that allows easy access to the configuration of CmisSync.
コード例 #1
0
ファイル: Config.cs プロジェクト: bpechcorp/CmisSync
 /// <summary>
 /// Create the path to the future log file.
 /// If there is already a log configuration, then please use GetLogFilePath instead.
 /// </summary>
 public string CreateLogFilePath()
 {
     // Create the log file at the same place as the .cmissync databases.
     return(Path.Combine(ConfigManager.DefaultConfigPath(), "debug_log.txt"));
 }