blob: 2fe720dcf6560fc9734d17350295526d8d4d4494 [file] [log] [blame]
Rob Hughesbdee4262020-01-07 17:05:24 +00001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8namespace armnnUtils
9{
10namespace Filesystem
11{
12
David Monahana0d18962020-01-24 09:13:33 +000013long long GetFileSize(const char* path);
Rob Hughesbdee4262020-01-07 17:05:24 +000014
15bool Remove(const char* path);
16
17}
18}