umjammer / vavi-nio-file-dropbox

🗂️ DropBox Java filesystem SPI
Other
0 stars 0 forks source link

Adding the possibility to filter out items when creating a newDirectoryStream #1

Closed FJBDev closed 4 years ago

FJBDev commented 4 years ago

The below code will not filter the txt files.

String globPattern = "*.txt";
try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(validPath, globPattern));