FileUtils.h 546 B

1234567891011121314151617181920212223242526272829303132333435
  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 GetAndroidSDKPath(const String& defaultPath);
  16. String OpenProjectFileDialog();
  17. String NewProjectFileDialog();
  18. String GetBuildPath(const String& defaultPath);
  19. void RevealInFinder(const String& fullpath);
  20. private:
  21. };
  22. }