xAccess method

  1. @override
int xAccess(
  1. String path,
  2. int flags
)
override

Check whether a file can be accessed.

Implementation

@override
int xAccess(String path, int flags) {
  return fileData.containsKey(path) ? 1 : 0;
}