Zip sourcecode - .vscode folder missing
Posted: 19 Aug 2022 11:07
I write app with visual code. When I zip source folder, Folder name ".vscode" is missing from output.zip.
Please fix it.
Please fix it.
Forum for XYplorer Users and Developers
https://www.xyplorer.com/xyfc/
Code: Select all
// Create 7z archive from selected items in target pane
$app = "C:\Program Files\7-Zip\7z.exe";
$sel = quote(get("SelectedItemsPathNames", '" "'));
$dst = get("path", i) . "\" . <curfolder> . "_" . gpc(gettoken(<selitems |>, 1, "|"), "base") . ".7z";
$opt = "-stl -mx=9 -myx=9 -mtc=on -mta=on"; // Plus all your other necessary options...
run """$app"" a $opt ""$dst"" $sel";