FileUtils.h 437 B

123456789101112131415161718192021222324252627282930313233
  1. #pragma once
  2. #include <Atomic/Core/Object.h>
  3. using namespace Atomic;
  4. namespace AtomicEditor
  5. {
  6. class FileUtils : public Object
  7. {
  8. OBJECT(FileUtils);
  9. public:
  10. /// Construct.
  11. FileUtils(Context* context);
  12. /// Destruct.
  13. ~FileUtils();
  14. bool CreateDirs(const String& folder);
  15. String OpenProjectFileDialog();
  16. String NewProjectFileDialog();
  17. void RevealInFinder(const String& fullpath);
  18. private:
  19. };
  20. }