ArmNN
 20.05
Filesystem.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 namespace armnnUtils
9 {
10 namespace Filesystem
11 {
12 
13 long long GetFileSize(const char* path);
14 
15 bool Remove(const char* path);
16 
17 }
18 }
bool Remove(const char *path)
Definition: Filesystem.cpp:47
long long GetFileSize(const char *path)
Definition: Filesystem.cpp:21