PDFxTMDLib  1.0.0
FileUtils.h
Go to the documentation of this file.
1 #pragma once
2 #include <filesystem>
3 #include <fstream>
4 #include <string>
5 #include <system_error>
6 
7 namespace PDFxTMD
8 {
9 class FileUtils
10 {
11  public:
12  static bool HasUserAccess(const std::string &path);
13  static double FreeSize(const std::string &path);
14  static bool Exists(const std::string &path);
15  static std::string ParentDir(const std::string &path);
16  static bool CreateDirs(const std::string &path);
17 };
18 } // namespace PDFxTMD
Definition: FileUtils.h:10
static double FreeSize(const std::string &path)
static bool HasUserAccess(const std::string &path)
static bool Exists(const std::string &path)
static std::string ParentDir(const std::string &path)
static bool CreateDirs(const std::string &path)
Definition: AllFlavorsShape.h:14