Home
last modified time | relevance | path

Searched refs:copyToPath (Results 1 – 1 of 1) sorted by relevance

/CafeSDK-2.12.13-1/system/src/tool/cafex/
DTools.cs1468 internal static void FileCopy(string copyFromPath, string copyToPath) in FileCopy() argument
1471 … 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()