We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be5ea4 commit ca648c8Copy full SHA for ca648c8
libmamba/include/mamba/fs/filesystem.hpp
@@ -1139,7 +1139,12 @@ namespace mamba::fs
1139
return std::filesystem::last_write_time(path, new_time, std::forward<OtherArgs>(args)...);
1140
}
1141
1142
- // Check if we have modification rights on a path
+ /* Check if we have modification rights on a path.
1143
+ * This function is not a wrapping on a of std::filesystem function, but it
1144
+ * uses std::filesystem::status().
1145
+ * Exceptions may be thrown by std::filesystem::status() if the path is not
1146
+ * valid.
1147
+ */
1148
bool has_permissions(const u8path&, const fs::perms&);
1149
1150
// void permissions(const path& p, perms prms, perm_options opts = perm_options::replace);
0 commit comments