标签:sts 同文件 pat pre 源文件 存在 路径 path file
string pLocalFilePath ="";//要复制的文件路径 string pSaveFilePath ="";//指定存储的路径 if (File.Exists(pLocalFilePath))//必须判断要复制的文件是否存在 { File.Copy(pLocalFilePath, pSaveFilePath, true);//三个参数分别是源文件路径,存储路径,若存储路径有相同文件是否替换 }
标签:sts 同文件 pat pre 源文件 存在 路径 path file
原文地址:https://www.cnblogs.com/yinmu/p/11441708.html