I want to detect if a file or directory has been deleted. Obviously I can't use Files.isDirectory(Path) and the equivalent for files, because the file/directory is already deleted.
I thought about using two WatchService instances to watch either for file changes or for directory changes, then I know all the time if it's a file or directory. Sadly I can't find an appropriate method.
Edit: I think any other solution regarding the checking of a String representation of filenames vs. directories is error prone.