aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Filesystem.hpp
blob: 1b12502b408054f42800a3c37f9ac40a1802df65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <ghc/filesystem.hpp>
namespace fs = ghc::filesystem;

namespace armnnUtils
{
namespace Filesystem
{

long long GetFileSize(const char* path);

bool Remove(const char* path);

}
}