Ejemplo n.º 1
0
 public static void ArcsDumpDirEntriesMain(string dir, ArcsDatabase db)
 {
     arcspath = dir;
     if (Directory.Exists(dir) == true)
     {
         // 存在フラグを全て落とす.
         TDCGExplorer.SetToolTips("Setup database");
         db.UpdateTahExistDown();
         ArcsDumpDirEntries(dir, db);
         // 存在しないtahファイルは消去する.
         TDCGExplorer.SetToolTips("Deleting orphan records");
         db.DeleteNoExistentTah();
     }
 }