Deletes the file at path.
path
@override Future<void> delete(String path) async { final file = File(p.join(root, path)); if (await file.exists()) { await file.delete(); } }