OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment.
Loading...
Searching...
No Matches
OMSFileSystem.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenModelica.
3 *
4 * Copyright (c) 1998-2026, Open Source Modelica Consortium (OSMC),
5 * c/o Linköpings universitet, Department of Computer and Information Science,
6 * SE-58183 Linköping, Sweden.
7 *
8 * All rights reserved.
9 *
10 * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF AGPL VERSION 3 LICENSE OR
11 * THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.8.
12 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
13 * RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GNU AGPL
14 * VERSION 3, ACCORDING TO RECIPIENTS CHOICE.
15 *
16 * The OpenModelica software and the OSMC (Open Source Modelica Consortium)
17 * Public License (OSMC-PL) are obtained from OSMC, either from the above
18 * address, from the URLs:
19 * http://www.openmodelica.org or
20 * https://github.com/OpenModelica/ or
21 * http://www.ida.liu.se/projects/OpenModelica,
22 * and in the OpenModelica distribution.
23 *
24 * GNU AGPL version 3 is obtained from:
25 * https://www.gnu.org/licenses/licenses.html#GPL
26 *
27 * This program is distributed WITHOUT ANY WARRANTY; without
28 * even the implied warranty of MERCHANTABILITY or FITNESS
29 * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
30 * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
31 *
32 * See the full OSMC Public License conditions for more details.
33 *
34 */
35
36#ifndef _OMS_FILESYSTEM_H_
37#define _OMS_FILESYSTEM_H_
38
39#include <filesystem>
40namespace filesystem = std::filesystem;
41
42
43#define OMS_RECURSIVE_DIRECTORY_ITERATOR(path) (filesystem::recursive_directory_iterator{path})
44
45filesystem::path naive_uncomplete(const filesystem::path& path, const filesystem::path& base);
46filesystem::path oms_unique_path(const std::string& prefix);
47void oms_copy_file(const filesystem::path& from, const filesystem::path& to);
48filesystem::path oms_canonical(const filesystem::path& p);
49filesystem::path oms_absolute(const filesystem::path& p);
50filesystem::path oms_temp_directory_path(void);
51
52#endif
void oms_copy_file(const filesystem::path &from, const filesystem::path &to)
Definition OMSFileSystem.cpp:93
filesystem::path naive_uncomplete(const filesystem::path &path, const filesystem::path &base)
Definition OMSFileSystem.cpp:50
filesystem::path oms_temp_directory_path(void)
Definition OMSFileSystem.cpp:126
filesystem::path oms_unique_path(const std::string &prefix)
Definition OMSFileSystem.cpp:81
filesystem::path oms_canonical(const filesystem::path &p)
Definition OMSFileSystem.cpp:107
filesystem::path oms_absolute(const filesystem::path &p)
Definition OMSFileSystem.cpp:121