зеркало из https://github.com/DeGsoft/maui-linux.git
20 строки
591 B
C#
20 строки
591 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Xamarin.Forms.Internals
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface IIsolatedStorageFile
|
|
{
|
|
Task CreateDirectoryAsync(string path);
|
|
Task<bool> GetDirectoryExistsAsync(string path);
|
|
Task<bool> GetFileExistsAsync(string path);
|
|
|
|
Task<DateTimeOffset> GetLastWriteTimeAsync(string path);
|
|
|
|
Task<Stream> OpenFileAsync(string path, FileMode mode, FileAccess access);
|
|
Task<Stream> OpenFileAsync(string path, FileMode mode, FileAccess access, FileShare share);
|
|
}
|
|
} |