Copies a directory to a new path
Future<void> copy(String directoryPath, String destinationPath) async => await copyImpl( directoryPath.replaceSeparator(), destinationPath.replaceSeparator());