c#两种复制文件的方法;
public void CopyFile(string sourcepath) { try { string temp = sourcepath.Substring(SourcePath.Length); string targepath = TargetPath + temp; FileInfo fi = new...