///
/// 复制指定的文件到指定目录
///
/// 源文件的全路径
/// 目标目录
/// 是否删除源文件
/// 目标文件名称,默认是原名称
///
///
///
///
public static void CopyFile(string fileFullPath, string destination, bool isDeleteSourceFile = false, string fileName = "")