bool checkFile()

in sensor_fusion_pkg/src/utility.cpp [23:27]


    bool checkFile(const std::string &filePath) {
        int fd = open(filePath.c_str(), O_RDONLY);
        close(fd);
        return fd >= 0;
    }