Modernes C++ programmieren

Okt 23, 2024

lst-0968-book.cpp

// https://godbolt.org/z/n4v78WWod 
#include <system_error>
#include <string>

void create_dir(const std::string& pathname, std::error_code& ec) {
#if defined(_WIN32)
  // Windows-Implementierung, mit Windows-Fehlercodes
#elif defined(linux)
  // Linux-Implementierung, mit Linux-Fehlercodes
#else
  // allgemeingültiger 'generischer' Fall
  ec = std::make_error_code(std::errc::not_supported);
#endif
}