Warning, /sdk/clazy/docs/checks/README-qfileinfo-exists.md is written in an unsupported language. File is not indexed.

0001 # qfileinfo-exists
0002 
0003 Finds places using `QFileInfo("filename").exists()` instead of the faster version `QFileInfo::exists("filename")`.
0004 
0005 According to Qt's docs:
0006 "Using this function is faster than using QFileInfo(file).exists() for file system access."