mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Forward Savedata FS functions to core FS
This commit is contained in:
parent
8914d89b32
commit
5bb46b2b36
1 changed files with 6 additions and 6 deletions
|
@ -119,22 +119,22 @@ namespace LibHac.IO.Save
|
||||||
|
|
||||||
public void CreateDirectory(string path)
|
public void CreateDirectory(string path)
|
||||||
{
|
{
|
||||||
throw new System.NotImplementedException();
|
SaveDataFileSystemCore.CreateDirectory(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CreateFile(string path, long size, CreateFileOptions options)
|
public void CreateFile(string path, long size, CreateFileOptions options)
|
||||||
{
|
{
|
||||||
throw new System.NotImplementedException();
|
SaveDataFileSystemCore.CreateFile(path, size, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DeleteDirectory(string path)
|
public void DeleteDirectory(string path)
|
||||||
{
|
{
|
||||||
throw new System.NotImplementedException();
|
SaveDataFileSystemCore.DeleteDirectory(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DeleteFile(string path)
|
public void DeleteFile(string path)
|
||||||
{
|
{
|
||||||
throw new System.NotImplementedException();
|
SaveDataFileSystemCore.DeleteFile(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
public IDirectory OpenDirectory(string path, OpenDirectoryMode mode)
|
public IDirectory OpenDirectory(string path, OpenDirectoryMode mode)
|
||||||
|
@ -149,12 +149,12 @@ namespace LibHac.IO.Save
|
||||||
|
|
||||||
public void RenameDirectory(string srcPath, string dstPath)
|
public void RenameDirectory(string srcPath, string dstPath)
|
||||||
{
|
{
|
||||||
throw new System.NotImplementedException();
|
SaveDataFileSystemCore.RenameDirectory(srcPath, dstPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RenameFile(string srcPath, string dstPath)
|
public void RenameFile(string srcPath, string dstPath)
|
||||||
{
|
{
|
||||||
throw new System.NotImplementedException();
|
SaveDataFileSystemCore.RenameFile(srcPath, dstPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool DirectoryExists(string path) => SaveDataFileSystemCore.DirectoryExists(path);
|
public bool DirectoryExists(string path) => SaveDataFileSystemCore.DirectoryExists(path);
|
||||||
|
|
Loading…
Reference in a new issue