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.
|
- using System;
- using System.Collections.Generic;
-
- namespace CI.WSANative.FileStorage
- {
- public static class WSANativeStorage
- {
- public static void SaveFile(string filename, string content)
- {
- }
-
- public static string LoadFile(string filename)
- {
- return string.Empty;
- }
-
- public static void DeleteFile(string filename)
- {
- }
-
- public static bool DoesFileExist(string filename)
- {
- return false;
- }
-
- public static List<string> GetAllFiles()
- {
- return new List<string>();
- }
- }
- }
|