FileCopy method

  1. @override
int FileCopy(
  1. MemoryPointer<RChar> srcPath,
  2. MemoryPointer<RChar> dstPath
)

Implementation

@override
int FileCopy(
  MemoryPointer<RChar> srcPath,
  MemoryPointer<RChar> dstPath,
) => _ffi.FileCopy(
  srcPath.asNativePointer(),
  dstPath.asNativePointer(),
);