IMO having both of these methods is redundant and really unclear! i can't quite understand why both of these methods are designed in Files API ??
Files.exist(..) returns true if file really exist and false if not exist or not having permission. so why in the hell there is a Files.notExist(..) ??
Oracle Docs says !Files.exists(…) is not equivalent to Files.notExists(…)!? maybe there is something that i couldn't understand well!!
what is benefit of using notExist() when there is an exist() method?
notExists()
returns false, and vice versa. – Ricciardi