xDelete method

  1. @override
void xDelete(
  1. String path,
  2. int syncDir
)
override

Delete a file.

Implementation

@override
void xDelete(String path, int syncDir) {
  final type = _recognizeType(path);
  if (type == null) {
    return _memory.xDelete(path, syncDir);
  } else {
    _markExists(type, false);
  }
}