mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 05:56:36 +08:00
- use virtualFileSystem in ULTs, writeDataToFile() does not create file but instead saves filename. Call to fileExists() checks if file was previously written Related-To: NEO-7006 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
12 lines
236 B
C++
12 lines
236 B
C++
/*
|
|
* Copyright (C) 2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/file_io.h"
|
|
|
|
bool virtualFileExists(const std::string &fileName);
|
|
void removeVirtualFile(const std::string &fileName);
|