xDelete method
Delete a file.
Implementation
@override
void xDelete(String path, int syncDir) {
final type = _recognizeType(path);
if (type == null) {
return _memory.xDelete(path, syncDir);
} else {
_requireFiles().markExists(type, false);
}
}