Path.cpp 423 B

1234567891011121314151617181920212223
  1. #include "il2cpp-config.h"
  2. #include "vm/Path.h"
  3. #include "os/Path.h"
  4. namespace il2cpp
  5. {
  6. namespace vm
  7. {
  8. static std::string s_TempPath;
  9. void Path::SetTempPath(const char* path)
  10. {
  11. s_TempPath = path;
  12. }
  13. std::string Path::GetTempPath()
  14. {
  15. if (!s_TempPath.empty())
  16. return s_TempPath;
  17. return os::Path::GetTempPath();
  18. }
  19. } /* namespace vm */
  20. } /* namespace il2cpp */