FileWindows.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Copyright (C) 2014, Panagiotis Christopoulos Charitos.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #include "anki/util/File.h"
  6. #include "anki/util/Exception.h"
  7. #include "anki/util/Assert.h"
  8. namespace anki {
  9. //==============================================================================
  10. // File =
  11. //==============================================================================
  12. //==============================================================================
  13. Bool File::fileExists(const char* filename)
  14. {
  15. ANKI_ASSERT(filename);
  16. // TODO
  17. }
  18. //==============================================================================
  19. // Functions =
  20. //==============================================================================
  21. //==============================================================================
  22. Bool directoryExists(const char* filename)
  23. {
  24. ANKI_ASSERT(filename);
  25. // TODO
  26. }
  27. //==============================================================================
  28. void removeDirectory(const char* dirname)
  29. {
  30. // TODO
  31. }
  32. //==============================================================================
  33. void createDirectory(const char* dir)
  34. {
  35. // TODO
  36. }
  37. } // end namespace anki