mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-15 14:46:05 +08:00
commented boost::permisions
This commit is contained in:
parent
e931800ea8
commit
97aa30c4d7
@ -677,10 +677,10 @@ CopyFileResult copy_file_inner(const std::string& from, const std::string& to, s
|
|||||||
// calls to cause needless failures on permissionless filesystems (ie. FATs on SD cards etc.)
|
// calls to cause needless failures on permissionless filesystems (ie. FATs on SD cards etc.)
|
||||||
// or when the target file doesn't exist.
|
// or when the target file doesn't exist.
|
||||||
boost::system::error_code ec;
|
boost::system::error_code ec;
|
||||||
boost::filesystem::permissions(target, perms, ec);
|
//boost::filesystem::permissions(target, perms, ec);
|
||||||
if (ec)
|
//if (ec)
|
||||||
BOOST_LOG_TRIVIAL(debug) << "boost::filesystem::permisions before copy error message (this could be irrelevant message based on file system): " << ec.message();
|
// BOOST_LOG_TRIVIAL(debug) << "boost::filesystem::permisions before copy error message (this could be irrelevant message based on file system): " << ec.message();
|
||||||
ec.clear();
|
//ec.clear();
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
// We want to allow copying files on Linux to succeed even if changing the file attributes fails.
|
// We want to allow copying files on Linux to succeed even if changing the file attributes fails.
|
||||||
// That may happen when copying on some exotic file system, for example Linux on Chrome.
|
// That may happen when copying on some exotic file system, for example Linux on Chrome.
|
||||||
@ -692,10 +692,10 @@ CopyFileResult copy_file_inner(const std::string& from, const std::string& to, s
|
|||||||
error_message = ec.message();
|
error_message = ec.message();
|
||||||
return FAIL_COPY_FILE;
|
return FAIL_COPY_FILE;
|
||||||
}
|
}
|
||||||
ec.clear();
|
//ec.clear();
|
||||||
boost::filesystem::permissions(target, perms, ec);
|
//boost::filesystem::permissions(target, perms, ec);
|
||||||
if (ec)
|
//if (ec)
|
||||||
BOOST_LOG_TRIVIAL(debug) << "boost::filesystem::permisions after copy error message (this could be irrelevant message based on file system): " << ec.message();
|
// BOOST_LOG_TRIVIAL(debug) << "boost::filesystem::permisions after copy error message (this could be irrelevant message based on file system): " << ec.message();
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user