Copies a file from source path to a new path
Future<void> copy(String filePath, String newPath) async => await copyImpl(filePath.replaceSeparator(), newPath.replaceSeparator());