EXFileUtils.h 352 B

1234567891011121314151617181920
  1. //
  2. // Created by Ht on 2020/7/6.
  3. //
  4. #ifndef JVDALUNIT_EXFILEUTILS_H
  5. #define JVDALUNIT_EXFILEUTILS_H
  6. #include <string>
  7. #include <jebase/config.h>
  8. class JE_API EXFileUtils {
  9. public:
  10. static bool fileExists(std::string& fileName);
  11. static void extOfFileName(const std::string &filename, std::string& ext);
  12. };
  13. #endif //JVDALUNIT_EXFILEUTILS_H