aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level0/README-qfileinfo-exists.md
blob: 279fc01ceca65c92e40a510dd756093b61685979 (plain)
1
2
3
4
5
6
# qfileinfo-exists

Finds places using `QFileInfo("filename").exists()` instead of the faster version `QFileInfo::exists("filename")`.

According to Qt's docs:
"Using this function is faster than using QFileInfo(file).exists() for file system access."