コード例 #1
0
 public static void EndingFullSync()
 {
     File.Delete(Config.LocalUserPath() + "\\FULLSYNC");
 }
コード例 #2
0
 public static bool InFullSync()
 {
     return(File.Exists(Config.LocalUserPath() + "\\FULLSYNC"));
 }
コード例 #3
0
 public static void StartingFullSync()
 {
     File.Create(Config.LocalUserPath() + "\\FULLSYNC").Close();
 }