copy check only if path is on removable device
This commit is contained in:
parent
11f07f277f
commit
ef250ad539
3 changed files with 5 additions and 5 deletions
|
@ -65,7 +65,7 @@ extern std::string normalize_utf8_nfc(const char *src);
|
||||||
extern std::error_code rename_file(const std::string &from, const std::string &to);
|
extern std::error_code rename_file(const std::string &from, const std::string &to);
|
||||||
|
|
||||||
// Copy a file, adjust the access attributes, so that the target is writable.
|
// Copy a file, adjust the access attributes, so that the target is writable.
|
||||||
extern int copy_file(const std::string &from, const std::string &to);
|
extern int copy_file(const std::string &from, const std::string &to, const bool with_check = false);
|
||||||
|
|
||||||
// Compares two files, returns 0 if identical.
|
// Compares two files, returns 0 if identical.
|
||||||
extern int check_copy(const std::string& origin, const std::string& copy);
|
extern int check_copy(const std::string& origin, const std::string& copy);
|
||||||
|
|
|
@ -417,7 +417,7 @@ std::error_code rename_file(const std::string &from, const std::string &to)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int copy_file(const std::string &from, const std::string &to)
|
int copy_file(const std::string &from, const std::string &to, const bool with_check)
|
||||||
{
|
{
|
||||||
const boost::filesystem::path source(from);
|
const boost::filesystem::path source(from);
|
||||||
const boost::filesystem::path target(to);
|
const boost::filesystem::path target(to);
|
||||||
|
@ -436,8 +436,7 @@ int copy_file(const std::string &from, const std::string &to)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
boost::filesystem::permissions(target, perms, ec);
|
boost::filesystem::permissions(target, perms, ec);
|
||||||
return -1;
|
return (with_check ? check_copy(from, to) : 0);
|
||||||
return check_copy(from, to);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int check_copy(const std::string &origin, const std::string ©)
|
int check_copy(const std::string &origin, const std::string ©)
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
#include <boost/nowide/cstdio.hpp>
|
#include <boost/nowide/cstdio.hpp>
|
||||||
#include "I18N.hpp"
|
#include "I18N.hpp"
|
||||||
#include "GUI.hpp"
|
#include "GUI.hpp"
|
||||||
|
#include "RemovableDriveManager.hpp"
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
|
|
||||||
|
@ -107,7 +108,7 @@ void BackgroundSlicingProcess::process_fff()
|
||||||
//FIXME localize the messages
|
//FIXME localize the messages
|
||||||
// Perform the final post-processing of the export path by applying the print statistics over the file name.
|
// Perform the final post-processing of the export path by applying the print statistics over the file name.
|
||||||
std::string export_path = m_fff_print->print_statistics().finalize_output_path(m_export_path);
|
std::string export_path = m_fff_print->print_statistics().finalize_output_path(m_export_path);
|
||||||
if (copy_file(m_temp_output_path, export_path) != 0)
|
if (copy_file(m_temp_output_path, export_path, GUI::RemovableDriveManager::get_instance().is_path_on_removable_drive(export_path)) != 0)
|
||||||
throw std::runtime_error(_utf8(L("Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?")));
|
throw std::runtime_error(_utf8(L("Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?")));
|
||||||
m_print->set_status(95, _utf8(L("Running post-processing scripts")));
|
m_print->set_status(95, _utf8(L("Running post-processing scripts")));
|
||||||
run_post_process_scripts(export_path, m_fff_print->config());
|
run_post_process_scripts(export_path, m_fff_print->config());
|
||||||
|
|
Loading…
Add table
Reference in a new issue