ApraLinuxUtils 1.0.0
C++ utility library for embedded Linux systems
 
Loading...
Searching...
No Matches
FileIO.h
Go to the documentation of this file.
1/*
2 * FileIOUtils.h
3 *
4 * Copyright (c) 2024 Apra Labs
5 *
6 * This file is part of ApraUtils.
7 *
8 * Licensed under the MIT License.
9 * See LICENSE file in the project root for full license information.
10 */
11
12#ifndef SRC_APRA_UTILS_FILEIO_H_
13#define SRC_APRA_UTILS_FILEIO_H_
14#include <string>
15
16using namespace std;
17
18namespace apra
19{
20class FileIO
21{
22private:
23 FileIO();
24 virtual ~FileIO();
25public:
26 static bool isFileExist(const string &path);
27 static bool isDirectoryExist(const string &path);
28};
29}
30
31#endif /* SRC_APRA_UTILS_FILEIO_H_ */
static bool isFileExist(const string &path)
Definition FileIO.cpp:26
static bool isDirectoryExist(const string &path)
Definition FileIO.cpp:41