using System; using System.ComponentModel; using System.IO; using System.Threading.Tasks; namespace Tizen.NUI.Binding { [EditorBrowsable(EditorBrowsableState.Never)] internal interface IIsolatedStorageFile { Task CreateDirectoryAsync(string path); Task GetDirectoryExistsAsync(string path); Task GetFileExistsAsync(string path); Task GetLastWriteTimeAsync(string path); Task OpenFileAsync(string path, FileMode mode, FileAccess access); Task OpenFileAsync(string path, FileMode mode, FileAccess access, FileShare share); } }