FileUtils.h 687 B

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