132133134135136137138
* @return DirectoryStream * @throws IOException */ public static DirectoryStream<Path> glob(Path startPath, String pattern) throws IOException{ validate(startPath); return new AsynchronousRecursiveDirectoryStream(startPath,pattern); }