FileCopy method

int FileCopy(
  1. Pointer<Char> srcPath,
  2. Pointer<Char> dstPath
)

Copy file from one path to another, dstPath created if it doesn't exist

Implementation

int FileCopy(Pointer<Char> srcPath, Pointer<Char> dstPath)
  => _FileCopy(srcPath, dstPath);