Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Create files
- */
- public static bool Create(string path) // 0.0049822 sec
- /*
- * Empty file
- */
- public static bool Empty(string path) // 0.0178945 sec
- /*
- * Copy and Move files
- */
- public static bool Copy(string path, string newpath, bool destroyfile = true, bool applayfile = false) // 0.0019186 sec
- public static bool Move(string path, string newpath, bool destroyfile = false, bool applayfile = false) // 0.0111144 sec
- /*
- * Convet file to setting's file
- */
- public static bool AddPath(string path, string main = null) // 0.0058414 sec
- /*
- * Only for settings files!
- * setting Get, Set, Reset, Delete and Get array
- */
- public static bool IsSettigs(string path) // 0.0016180 sec
- public static bool Isset(string path, string key) // 0.0011265 sec
- public static bool SetValue(string path, string key, string value) // 0.0035711 sec
- public static bool DeleteValue(string path, string key) // 0.0180497 sec
- public static string GetValue(string path, string key) // 0.0022031 sec
- public static string[] GetArray(string path, string separator = "=") // 0.0016365 sec
- public static bool ResetValue(string path, string key) // 0.0053665 sec
- /*
- * Conventer - Get
- */
- public static int GetInt32(string path, string key) // 0.0025049 sec
- public static long GetInt64(string path, string key) // 0.0026380 sec
- public static bool GetBool(string path, string key) // 0.0073689 sec
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement