We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d482b5d commit 9cf105aCopy full SHA for 9cf105a
src/app/in_context.cpp
@@ -217,12 +217,12 @@ struct SimpleIOContext : AppContextShareImpl {
217
ectx = std::move(uniq);
218
} else {
219
if (!mainSettings.extractSettings.folderPerArc) {
220
- outPath = workingFile.GetFolder();
+ outPath = AFileInfo(outPath).GetFolder();
221
222
- es::mkdir(outPath);
223
outPath.push_back('/');
224
}
225
+ mkdirs(outPath);
226
auto uniq = std::make_unique<IOExtractContext>(outPath);
227
uniq->forEachFile = forEachFile;
228
0 commit comments