I'm trying to use the Zip.Extract command to place the files in the appdata folder, as shown in the examples:
I tested these two commands that I found on this page https://www.indigorose.com/webhelp/a..._Variables.htm, although there were others, they didn't make sense for what I wanted, but even using only these two I didn't have an acceptable result.
Code:
Zip.Extract("AutoPlay\\Docs\\Ativadores\\Pro\\Pro.zip", {"*.*"}, _DesktopFolder.."Roaming\\Rizonesoft", true, true, "", ZIP_OVERWRITE_ALWAYS, nil);
Code:
Zip.Extract("AutoPlay\\Docs\\Ativadores\\Pro\\Pro.zip", {"*.*"}, _SourceDrive.."C:\\Users\\%HOMEPATH%\\AppData\\Roaming\\Rizonesoft", true, true, "", ZIP_OVERWRITE_ALWAYS, nil);
Code:
Zip.Extract("AutoPlay\\Docs\\Ativadores\\Pro\\Pro.zip", {"*.*"}, _SourceDrive.."C:\\Users\\%USERPROFILE%\\AppData\\Roaming\\Rizonesoft", true, true, "", ZIP_OVERWRITE_ALWAYS, nil);
Comment