最近有個簡單的檔案同步需求,只增不刪的單向同步,因此寫了一支小程式。
剛好看到Java application frameworks come to .NET,二話不說就用C#寫。
完整程式如下:
剛好看到Java application frameworks come to .NET,二話不說就用C#寫。
完整程式如下:
using System;
using System.IO;
using System.Collections.Generic;
using System.Text;
namespace DirSync
{
class DirSync
{
static void Main(string[] args)
{
if (args.Length < filepathnames =" Directory.GetFileSystemEntries(Src);" destfilepathname =" Dst"> 0)
{
// 若 source時間比較晚則覆寫
FileCopyWithException(pathname, destFilePathName);
}
}
else
{
FileCopyWithException(pathname, destFilePathName);
}
}
}
}
private static void FileCopyWithException(string pathname, string destFilePathName)
{
try
{
File.Copy(pathname, destFilePathName, true);
}
catch (Exception ex)
{
Console.WriteLine(ex.StackTrace);
}
}
}
}
檔案授權為GPL,你不公開是你家的事,I won't sue you.
留言