/* * Copyright (C) 2023-2024 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include namespace NEO { class EnvironmentVariableReader; bool checkDefaultCacheDirSettings(std::string &cacheDir, NEO::EnvironmentVariableReader &reader); time_t getFileModificationTime(const std::string &path); size_t getFileSize(const std::string &path); } // namespace NEO