Checking if a folder exists (and creating folders) in Qt, C++

后端 未结 5 675
深忆病人
深忆病人 2020-12-04 09:07

In Qt, how do I check if a given folder exists in the current directory?
If it doesn\'t exist, how do I then create an empty folder?

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-04 09:48

    When you use QDir.mkpath() it returns true if the path already exists, in the other hand QDir.mkdir() returns false if the path already exists. So depending on your program you have to choose which fits better.

    You can see more on Qt Documentation

提交回复
热议问题