Browse Source

Support 'file exists' situation

The lt::status_t::file_exist is returned when lt::move_flags_t::fail_if_exist is used, which means the whole move operation failed. So hanlde this condition correctly (even if the fail_if_exist isn't used in the code base currently).

PR #17853.
adaptive-webui-19844
Chocobo1 2 years ago committed by GitHub
parent
commit
1f799689ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/base/bittorrent/customstorage.cpp

4
src/base/bittorrent/customstorage.cpp

@ -120,7 +120,7 @@ void CustomDiskIOThread::async_move_storage(lt::storage_index_t storage, std::st @@ -120,7 +120,7 @@ void CustomDiskIOThread::async_move_storage(lt::storage_index_t storage, std::st
m_nativeDiskIO->async_move_storage(storage, path, flags
, [=, handler = std::move(handler)](lt::status_t status, const std::string &path, const lt::storage_error &error)
{
if (status != lt::status_t::fatal_disk_error)
if ((status != lt::status_t::fatal_disk_error) && (status != lt::status_t::file_exist))
m_storageData[storage].savePath = newSavePath;
handler(status, path, error);
@ -265,7 +265,7 @@ lt::status_t CustomStorage::move_storage(const std::string &savePath, lt::move_f @@ -265,7 +265,7 @@ lt::status_t CustomStorage::move_storage(const std::string &savePath, lt::move_f
handleCompleteFiles(newSavePath);
const lt::status_t ret = lt::default_storage::move_storage(savePath, flags, ec);
if (ret != lt::status_t::fatal_disk_error)
if ((ret != lt::status_t::fatal_disk_error) && (ret != lt::status_t::file_exist))
m_savePath = newSavePath;
return ret;

Loading…
Cancel
Save