ExistsObject
status_t existsResult = StorageUtils::ExistsObject(path, &fileExists, NULL, &fileSize);
result = StorageUtils::ExistsObject(temporaryFilePath, &hasFile, NULL, &size);
result = StorageUtils::ExistsObject(localPath, &hasData, NULL, &size);
status_t hasDataResult = StorageUtils::ExistsObject(localPath, &hasData, NULL, &size);
if (StorageUtils::ExistsObject(packagePath, &exists, NULL, NULL) != B_OK)
result = StorageUtils::ExistsObject(tarPath, &hasFile, NULL, &size);
status = StorageUtils::ExistsObject(testFilePath, &exists, NULL, NULL);
if (StorageUtils::ExistsObject(lastVersionPath, &exists, NULL, &size) != B_OK) {
result = ExistsObject(path, &exists, &isDirectory, NULL);
result = ExistsObject(directoryEntryPath, &exists, &isDirectory,
result = ExistsObject(path, &exists, NULL, NULL);
static status_t ExistsObject(const BPath& path,