diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-03-01 17:05:50 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-04-03 12:32:32 +0200 |
| commit | bac5c9cf643e9333479ac667426d0b70f8f3aa7f (patch) | |
| tree | 5fc0eac69ace5d21c1a1b40e6b610058b92a4bd7 /src/wallet/wallet.cpp | |
| parent | Replace includes of boost/filesystem.h with fs.h (diff) | |
| download | discoin-bac5c9cf643e9333479ac667426d0b70f8f3aa7f.tar.xz discoin-bac5c9cf643e9333479ac667426d0b70f8f3aa7f.zip | |
Replace uses of boost::filesystem with fs
Step two in abstracting away boost::filesystem.
To repeat this, simply run:
```
git ls-files \*.cpp \*.h | xargs sed -i 's/boost::filesystem/fs/g'
```
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index ec0432f9c..55d81daab 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3945,16 +3945,16 @@ bool CWallet::BackupWallet(const std::string& strDest) bitdb.mapFileUseCount.erase(strWalletFile); // Copy wallet file - boost::filesystem::path pathSrc = GetDataDir() / strWalletFile; - boost::filesystem::path pathDest(strDest); - if (boost::filesystem::is_directory(pathDest)) + fs::path pathSrc = GetDataDir() / strWalletFile; + fs::path pathDest(strDest); + if (fs::is_directory(pathDest)) pathDest /= strWalletFile; try { - boost::filesystem::copy_file(pathSrc, pathDest, boost::filesystem::copy_option::overwrite_if_exists); + fs::copy_file(pathSrc, pathDest, fs::copy_option::overwrite_if_exists); LogPrintf("copied %s to %s\n", strWalletFile, pathDest.string()); return true; - } catch (const boost::filesystem::filesystem_error& e) { + } catch (const fs::filesystem_error& e) { LogPrintf("error copying %s to %s - %s\n", strWalletFile, pathDest.string(), e.what()); return false; } |