Yes,
thanks
I know that
But instead of using to calls (isDir() and isFile()), I can use just one QFile.exists() in order to learn if path is does not exist.
But I am afraid it will not work always, because it is AGAINST the manual, which said QFile.exists() will return false if FILE does not exists. So, the fact that it returns TRUE if DIRECTORY exists it could be a bug or platform dependence or may be bad overload somewhere...
That is my question: is it expected behavior from QFile.exists() return true on DIRECTORY existence and return false on FILE or DIRECTORY absence - practically verifies path existence instead of file existence.