Moves a file to a new path
Future<void> move(String oldPath, String newPath) async => await moveFile(oldPath.replaceSeparator(), newPath.replaceSeparator());