FileSystem.h 825 B

1234567891011
  1. #pragma once
  2. #include "ThirdPartyHeadersBegin.h"
  3. # include <stdio.h>
  4. # include <string>
  5. #include "ThirdPartyHeadersEnd.h"
  6. #include "StandardIntegralTypes.h"
  7. namespace boost { namespace filesystem { class path; }} namespace tecplot { namespace filesystem { FILE* fileOpen(std::string const& ___1394, std::string const& ___2504); FILE* fileReopen(std::string const& ___1394, std::string const& ___2504, FILE* file); int fileRename(std::string const& ___1394, std::string const& newFileName); int fileRemove(std::string const& ___1394); bool fileSize(char const* ___1394, uint64_t& sizeResult); bool fileSize(std::string const& ___1394, uint64_t& sizeResult);
  8. #if !defined NO_THIRD_PARTY_LIBS
  9. bool fileExists(boost::filesystem::path const& filePath); bool dirExists(boost::filesystem::path const& dirPath);
  10. #endif
  11. }}