Skip to content
⌘ NSIS Forum Archive

Dialog::Open an zip file

4 posts

OsmanY22#

Dialog::Open an zip file

Hi!

I want to open with the option Dialog::Open an Zip-File an unzip this file and copy to the direction.

If this is not possible, then i want to open some files ... (an Order and another Files)


Is this possible???

Please help 🙂

i use this option:

DetailPrint "Executing plugin...."
Dialogs::Open \
"All Files (*.*)|*.*|" \
"1" \
"Choose a file from the list" \
$EXEDIR \
${VAR_6}
StrCmp $6 "" Cancel Ok
Joel#
Also, I recommend to you, change the pattern:
"ZIP files (*.zip)|*.zip|All Files (*.*)|*.*|" 
🙂