christian-schlichtherle / truevfs

TrueVFS is a virtual file system (VFS) for Java 1.8 which enables client applications to access archive files as if they were virtual directories, including nested archive files in multithreaded environments.

Home Page:https://truevfs.namespace.global

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement getPathMatcher(...)

ullenboom opened this issue · comments

throw new UnsupportedOperationException("Not supported yet.");

This could work as a quick-fix:

public PathMatcher getPathMatcher(String syntaxAndPattern) {
  return FileSystems.getDefault().getPathMatcher( syntaxAndPattern );
}