瀏覽代碼

Tested on Windows 7.


git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@91 d34b734f-a00e-4b39-a726-e4eeb87269ab
adeniz_1
adeniz 9 年之前
父節點
當前提交
b68b4410d5
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      filesystem.cpp

+ 1
- 1
filesystem.cpp 查看文件

@@ -49,7 +49,7 @@ namespace CodeDweller {
void FileOps::moveFile(std::string const &from, std::string const &to) {
#ifdef _WIN32
if (MoveFile(from.c_str(), to.c_str()) == 0) {
if (MoveFileEx(from.c_str(), to.c_str(), MOVEFILE_REPLACE_EXISTING) == 0) {
#else
if (rename(from.c_str(), to.c_str()) != 0) {
#endif

Loading…
取消
儲存