Searched refs:copyToPath (Results 1 – 1 of 1) sorted by relevance
1468 internal static void FileCopy(string copyFromPath, string copyToPath) in FileCopy() argument1471 … Console.WriteLine("FileUtil::FileCopy: Copying '{0}' to '{1}'", copyFromPath, copyToPath); in FileCopy()1474 if (File.Exists(copyToPath)) in FileCopy()1476 var target = new FileInfo(copyToPath); in FileCopy()1482 string copyToDir = Path.GetDirectoryName(copyToPath); in FileCopy()1487 origin.CopyTo(copyToPath, true); in FileCopy()1490 var destination = new FileInfo(copyToPath); in FileCopy()