Forward Savedata FS functions to core FS

This commit is contained in:
Alex Barney 2019-04-20 14:21:09 -04:00
parent 8914d89b32
commit 5bb46b2b36

View file

@ -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);