Exemplo n.º 1
0
 public DirectoryInfoDatabase(string sDirectoryPath, string sComment, string sFileMask, WorkControlHelper wc = null)
 {
     workControl = wc;
     Comment     = sComment;
     FileMask    = sFileMask;
     CollectInfo(sDirectoryPath);
 }
Exemplo n.º 2
0
 public DirectoryInfoDatabase(DirectoryInfo sDirectoryInfo, string sComment, string sFileMask, bool bTimeInTicks, WorkControlHelper wc = null)
 {
     workControl    = wc;
     Comment        = sComment;
     FileMask       = sFileMask;
     m_bTimeInTicks = bTimeInTicks;
     CollectInfo(sDirectoryInfo);
 }
Exemplo n.º 3
0
 public DirectoryInfoDatabase(string sDirectoryPath, string sComment, string sFileMask, bool bTimeInTicks, bool bLowerCaseNames, WorkControlHelper wc = null)
 {
     workControl       = wc;
     Comment           = sComment;
     FileMask          = sFileMask;
     m_bTimeInTicks    = bTimeInTicks;
     m_bLowerCaseNames = bLowerCaseNames;
     CollectInfo(sDirectoryPath);
 }
Exemplo n.º 4
0
 public DirectoryInfoDatabase(DirectoryInfo sDirectoryInfo, string sComment, string sFileMask, bool bTimeInTicks, bool bLowerCaseNames, int depth, string excludedCompany, WorkControlHelper wc = null)
 {
     workControl       = wc;
     Comment           = sComment;
     FileMask          = sFileMask;
     m_bTimeInTicks    = bTimeInTicks;
     m_bLowerCaseNames = bLowerCaseNames;
     ExcludedCompany   = excludedCompany;
     CollectInfo(sDirectoryInfo, depth);
 }
Exemplo n.º 5
0
 public DirectoryInfoDatabase(string sDirectoryPath, string sComment, string sFileMask, bool bTimeInTicks, bool bLowerCaseNames, int depth, bool onlyCorrupted = false, string excludedCompany = null, WorkControlHelper wc = null)
 {
     workControl       = wc;
     Comment           = sComment;
     FileMask          = sFileMask;
     m_bTimeInTicks    = bTimeInTicks;
     m_bLowerCaseNames = bLowerCaseNames;
     m_bOnlyCorrupted  = onlyCorrupted;
     ExcludedCompany   = excludedCompany;
     CollectInfo(sDirectoryPath, depth);
 }
 public DirectoryInfoDatabaseComparable(string sDirectoryPath, string sComment, string sFileMask, bool bTimeInTicks, bool bLowerCaseNames, int depth, string excludedCompany, WorkControlHelper wc = null) : base(sDirectoryPath, sComment, sFileMask, bTimeInTicks, bLowerCaseNames, depth, excludedCompany, wc)
 {
 }
 public DirectoryInfoDatabaseComparable(string sDirectoryPath, string sComment, string sFileMask, bool bTimeInTicks, WorkControlHelper wc = null) : base(sDirectoryPath, sComment, sFileMask, bTimeInTicks, wc)
 {
 }
 public DirectoryInfoDatabaseComparable(string sDirectoryPath, string sComment, WorkControlHelper wc = null) : base(sDirectoryPath, sComment, wc)
 {
 }
 public DirectoryInfoDatabaseComparable(DirectoryInfo sDirectoryInfo, string sComment, string sFileMask, bool bTimeInTicks, bool bLowerCaseNames, int depth, bool onlyCorrupted = false, string excludedCompany = null, WorkControlHelper wc = null) : base(sDirectoryInfo, sComment, sFileMask, bTimeInTicks, bLowerCaseNames, depth, onlyCorrupted, excludedCompany, wc)
 {
 }
 public DirectoryInfoDatabaseComparable(DirectoryInfo sDirectoryInfo, string sComment, string sFileMask, bool bTimeInTicks, bool bLowerCaseNames, WorkControlHelper wc = null) : base(sDirectoryInfo, sComment, sFileMask, bTimeInTicks, bLowerCaseNames, wc)
 {
 }
 public DirectoryInfoDatabaseComparable(DirectoryInfo sDirectoryInfo, string sComment, string sFileMask, WorkControlHelper wc = null) : base(sDirectoryInfo, sComment, sFileMask, wc)
 {
 }
 public DirectoryInfoDatabaseComparable(DirectoryInfo sDirectoryInfo, WorkControlHelper wc = null) : base(sDirectoryInfo, wc)
 {
 }
Exemplo n.º 13
0
 public DirectoryInfoDatabase(string sDirectoryPath, WorkControlHelper wc = null)
 {
     workControl = wc;
     CollectInfo(sDirectoryPath);
 }
Exemplo n.º 14
0
 public DirectoryInfoDatabase(DirectoryInfo sDirectoryInfo, string sComment, WorkControlHelper wc = null)
 {
     workControl = wc;
     Comment     = sComment;
     CollectInfo(sDirectoryInfo);
 }
Exemplo n.º 15
0
 public DirectoryInfoDatabase(DirectoryInfo sDirectoryInfo, WorkControlHelper wc = null)
 {
     workControl = wc;
     CollectInfo(sDirectoryInfo);
 }
Exemplo n.º 16
0
 public DirectoryInfoDatabase(WorkControlHelper wc = null)
 {
     workControl = wc;
 }