deleteFile method

void deleteFile(
  1. String path
)

Deletes the file at path.

Implementation

void deleteFile(String path) {
  resourceProvider.getFile(convertPath(path)).delete();
}