public IntranetLibraryDB(string base_path) { this.base_path = base_path; library_path = IntranetLibraryTools.GetLibraryMetadataPath(base_path); // Copy a library into place... if (!File.Exists(library_path)) { Logging.Warn("Intranet Library metadata db does not exist so copying the template to {0}", library_path); string library_metadata_template_path = Path.GetFullPath(Path.Combine(ConfigurationManager.Instance.StartupDirectoryForQiqqa, @"DocumentLibrary/IntranetLibraryStuff/IntranetLibrary.Metadata.Template.s3db")); if (!File.Exists(library_metadata_template_path)) { throw new Exception($"Sync template file '{library_metadata_template_path}' does not exist!"); } string basedir = Path.GetDirectoryName(library_path); if (!Directory.Exists(basedir)) { throw new Exception($"Sync target directory '{basedir}' for Qiqqa database '{library_path}' does not exist!"); } try { File.Copy(library_metadata_template_path, library_path); } catch (Exception ex) { Logging.Error(ex, "Error 0x{2:08X}: Failed to write the sync template '{0}' to sync target directory '{1}'", library_metadata_template_path, basedir, ex.HResult); throw; } } }
public IntranetLibraryDB(string base_path) { this.base_path = base_path; this.library_path = IntranetLibraryTools.GetLibraryMetadataPath(base_path); // Copy a library into place... if (!File.Exists(library_path)) { Logging.Warn("Intranet Library metadata db does not exist so copying the template to {0}", library_path); string library_metadata_template_path = ConfigurationManager.Instance.StartupDirectoryForQiqqa + @"DocumentLibrary\IntranetLibraryStuff\IntranetLibrary.Metadata.Template.s3db"; File.Copy(library_metadata_template_path, library_path); } }