FileMove method
Move file from one directory to another, dstPath created if it doesn't exist
Implementation
@override
int FileMove(
MemoryPointer<RChar> srcPath,
MemoryPointer<RChar> dstPath,
) => _ffi.FileMove(
srcPath.asNativePointer(),
dstPath.asNativePointer(),
);