FileMove method

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

Move file from one directory to another, dstPath created if it doesn't exist

Implementation

int FileMove(Pointer<Char> srcPath, Pointer<Char> dstPath)
  => _FileMove(srcPath, dstPath);