You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
534 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CI.WSANative.FileStorage
  4. {
  5. public static class WSANativeStorage
  6. {
  7. public static void SaveFile(string filename, string content)
  8. {
  9. }
  10. public static string LoadFile(string filename)
  11. {
  12. return string.Empty;
  13. }
  14. public static void DeleteFile(string filename)
  15. {
  16. }
  17. public static bool DoesFileExist(string filename)
  18. {
  19. return false;
  20. }
  21. public static List<string> GetAllFiles()
  22. {
  23. return new List<string>();
  24. }
  25. }
  26. }