blob: 1b12502b408054f42800a3c37f9ac40a1802df65 [file] [log] [blame]
Laurent Carlier749294b2020-06-01 09:03:17 +01001//
Rob Hughesbdee4262020-01-07 17:05:24 +00002// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
Jim Flynnc9631102020-06-24 11:11:20 +01008#include <ghc/filesystem.hpp>
9namespace fs = ghc::filesystem;
10
Rob Hughesbdee4262020-01-07 17:05:24 +000011namespace armnnUtils
12{
13namespace Filesystem
14{
15
David Monahana0d18962020-01-24 09:13:33 +000016long long GetFileSize(const char* path);
Rob Hughesbdee4262020-01-07 17:05:24 +000017
18bool Remove(const char* path);
19
20}
21}