getFile method

File getFile(
  1. String path
)

Gets the File at path.

Implementation

File getFile(String path) {
  String convertedPath = convertPath(path);
  return resourceProvider.getFile(convertedPath);
}