Fledge
An open source edge computing platform for industrial users
file_utils.h
1 /*
2  * Fledge utilities functions for handling files and directories
3  *
4  * Copyright (c) 2024 Dianomic Systems
5  *
6  * Released under the Apache 2.0 Licence
7  *
8  * Author: Ray Verhoeff
9  */
10 
11 #pragma once
12 #include <string>
13 
14 int copyFile(const char *to, const char *from);
15 void createDirectory(const std::string &directoryName);
16 int removeDirectory(const char *path);