terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ CopyFile()

static void System.IO.FileSystem.CopyFile ( string sourceFullPath,
string destFullPath,
bool overwrite )
inlinestatic

Definition at line 36 of file FileSystem.cs.

37 {
38 if (destFullPath != null)
39 {
40 char rawStringData = destFullPath.GetRawStringData();
41 int stringLength = destFullPath._stringLength;
42 return;
43 }
44 string fileName = Path.GetFileName(sourceFullPath);
45 string text = Path.Combine(destFullPath, fileName);
46 bool flag = FileSystem.CopyDanglingSymlink(sourceFullPath, text);
47 }
class f__AnonymousType0<< Count > j__TPar

References System.IO.Path.Combine(), System.IO.FileSystem.CopyDanglingSymlink(), System.IO.Path.GetFileName(), j__TPar, and System.text.

Referenced by System.IO.File.Copy().