summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/disk_filesystem.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-04-24 09:56:05 +0200
committermailwl <mailwl@gmail.com>2018-04-24 09:56:05 +0200
commita0179e5ca5bc54491f03ff60d2f971197eb03e88 (patch)
tree99ba0561c6fe429169a40e76a70db7b3f99a71ee /src/core/file_sys/disk_filesystem.cpp
parentMerge pull request #379 from Subv/multi_buffers (diff)
downloadyuzu-a0179e5ca5bc54491f03ff60d2f971197eb03e88.tar
yuzu-a0179e5ca5bc54491f03ff60d2f971197eb03e88.tar.gz
yuzu-a0179e5ca5bc54491f03ff60d2f971197eb03e88.tar.bz2
yuzu-a0179e5ca5bc54491f03ff60d2f971197eb03e88.tar.lz
yuzu-a0179e5ca5bc54491f03ff60d2f971197eb03e88.tar.xz
yuzu-a0179e5ca5bc54491f03ff60d2f971197eb03e88.tar.zst
yuzu-a0179e5ca5bc54491f03ff60d2f971197eb03e88.zip
Diffstat (limited to 'src/core/file_sys/disk_filesystem.cpp')
-rw-r--r--src/core/file_sys/disk_filesystem.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/core/file_sys/disk_filesystem.cpp b/src/core/file_sys/disk_filesystem.cpp
index ca1323873..4d00249fa 100644
--- a/src/core/file_sys/disk_filesystem.cpp
+++ b/src/core/file_sys/disk_filesystem.cpp
@@ -67,10 +67,16 @@ ResultCode Disk_FileSystem::DeleteFile(const std::string& path) const {
return RESULT_SUCCESS;
}
-ResultCode Disk_FileSystem::RenameFile(const Path& src_path, const Path& dest_path) const {
- LOG_WARNING(Service_FS, "(STUBBED) called");
+ResultCode Disk_FileSystem::RenameFile(const std::string& src_path,
+ const std::string& dest_path) const {
+ const std::string full_src_path = base_directory + src_path;
+ const std::string full_dest_path = base_directory + dest_path;
+
+ if (!FileUtil::Exists(full_src_path)) {
+ return ERROR_PATH_NOT_FOUND;
+ }
// TODO(wwylele): Use correct error code
- return ResultCode(-1);
+ return FileUtil::Rename(full_src_path, full_dest_path) ? RESULT_SUCCESS : ResultCode(-1);
}
ResultCode Disk_FileSystem::DeleteDirectory(const Path& path) const {