Changed filesystem include to new version

This commit is contained in:
petriVM18 2022-07-13 09:38:42 +02:00
parent 3bad503694
commit b4bb46726c
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
#include <fsfw/devicehandlers/DeviceHandlerIF.h>
#include <cstddef>
#include <experimental/filesystem>
#include <filesystem>
#include <nlohmann/json.hpp>
#include "OBSWConfig.h"

View File

@ -8,7 +8,7 @@
NVMParameterBase::NVMParameterBase(std::string fullName) : fullName(fullName) {}
ReturnValue_t NVMParameterBase::readJsonFile() {
if (std::experimental::filesystem::exists(fullName)) {
if (std::filesystem::exists(fullName)) {
// Read JSON file content into object
std::ifstream i(fullName);
try {
@ -37,7 +37,7 @@ void NVMParameterBase::setFullName(std::string fullName) { this->fullName = full
std::string NVMParameterBase::getFullName() const { return fullName; }
bool NVMParameterBase::getJsonFileExists() { return std::experimental::filesystem::exists(fullName); }
bool NVMParameterBase::getJsonFileExists() { return std::filesystem::exists(fullName); }
void NVMParameterBase::printKeys() const {
sif::info << "Printing keys for JSON file " << fullName << std::endl;

View File

@ -1,7 +1,7 @@
#ifndef BSP_Q7S_CORE_NVMPARAMS_NVMPARAMIF_H_
#define BSP_Q7S_CORE_NVMPARAMS_NVMPARAMIF_H_
#include <experimental/filesystem>
#include <filesystem>
#include <nlohmann/json.hpp>
#include <string>