41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Xamarin.Forms.Internals;
|
|
|
|
namespace Ooui.Forms
|
|
{
|
|
public class LocalIsolatedStorageFile : IIsolatedStorageFile
|
|
{
|
|
public Task CreateDirectoryAsync (string path)
|
|
{
|
|
return Task.FromResult<object> (null);
|
|
}
|
|
|
|
public Task<bool> GetDirectoryExistsAsync (string path)
|
|
{
|
|
return Task.FromResult<bool> (true);
|
|
}
|
|
|
|
public Task<bool> GetFileExistsAsync (string path)
|
|
{
|
|
return Task.FromResult<bool> (false);
|
|
}
|
|
|
|
public Task<DateTimeOffset> GetLastWriteTimeAsync (string path)
|
|
{
|
|
throw new NotSupportedException ();
|
|
}
|
|
|
|
public Task<Stream> OpenFileAsync (string path, FileMode mode, FileAccess access)
|
|
{
|
|
throw new NotSupportedException ();
|
|
}
|
|
|
|
public Task<Stream> OpenFileAsync (string path, FileMode mode, FileAccess access, FileShare share)
|
|
{
|
|
throw new NotSupportedException ();
|
|
}
|
|
}
|
|
}
|