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