Page 1 of 1

Utterly dumb question from a newb - zipped folders...

Posted: 25 Aug 2012 13:09
by KareninPa
I have a neck problem and can't click my mouse without aggravating it.

I got this program thinking it would help me minimize my clicking as I have tons of files for my cutting machines. These usually come as zipped folders. I did know how to open zipped folders at one point, without having to cut and paste, but can't remember how to do it. I had to take a complete break from the computer and can't remember anything now.

Can anyone help explain it to me? Clearly, I'm not computer savvy.

Thank you, kindly,
Karen

Re: Utterly dumb question from a newb - zipped folders...

Posted: 25 Aug 2012 14:13
by admin
Well, XYplorer does not support zipped folders.

Welcome anyway,
Don

Re: Utterly dumb question from a newb - zipped folders...

Posted: 25 Aug 2012 14:52
by KareninPa
But that's odd. I know I used it before. I thought (again, bad memory) that I just clicked twice on the folder, and then it did the unzipping for me and put it in its own unzipped folder. So, one or two clicks for me, instead of the cutting and pasting. I'm pretty sure I did it. No?

Thanks for the help.
K

Re: Utterly dumb question from a newb - zipped folders...

Posted: 25 Aug 2012 15:14
by admin
Really? I should know... OTOH I never work with zipped folders. Maybe somebody else can clear this up...

Re: Utterly dumb question from a newb - zipped folders...

Posted: 25 Aug 2012 18:25
by serendipity
KareninPa wrote:But that's odd. I know I used it before. I thought (again, bad memory) that I just clicked twice on the folder, and then it did the unzipping for me and put it in its own unzipped folder. So, one or two clicks for me, instead of the cutting and pasting. I'm pretty sure I did it. No?

Thanks for the help.
K
Welcome!
Did you by any chance use 7-zip and it had this unzipping behavior??

Re: Utterly dumb question from a newb - zipped folders...

Posted: 25 Aug 2012 22:49
by KareninPa
I don't think I have 7-zip. I do have Winzip, but it only did as I described, when I first opened XYplorer and used that. It certainly doesn't work the way I described normally.

K

Re: Utterly dumb question from a newb - zipped folders...

Posted: 26 Aug 2012 18:17
by serendipity
KareninPa wrote:I don't think I have 7-zip. I do have Winzip, but it only did as I described, when I first opened XYplorer and used that. It certainly doesn't work the way I described normally.

K
Sorry can't figure out how it worked for you earlier, unless you used specific script to extract files directly on double-click or something similar. I see "extract all" option when you right-click a zip file, is this something that will work for you?
By the way, if you do have winzip installed then its not hard to write a small script to do the extraction in fewer steps.
All this assuming that you have the XY pro version that supports scripting.

Re: Utterly dumb question from a newb - zipped folders...

Posted: 26 Aug 2012 20:17
by KareninPa
[/quote]
Sorry can't figure out how it worked for you earlier, unless you used specific script to extract files directly on double-click or something similar. I see "extract all" option when you right-click a zip file, is this something that will work for you?
By the way, if you do have winzip installed then its not hard to write a small script to do the extraction in fewer steps.
All this assuming that you have the XY pro version that supports scripting.[/quote]


I do have winzip and the XY pro version, but I don't have a clue how to do what you're saying to minimize the steps. I need to do all I can to minimize clicking. It's horrible.

Thank you.
K

Re: Utterly dumb question from a newb - zipped folders...

Posted: 27 Aug 2012 00:04
by serendipity
First step is to try if this script works:

1) Select a zip file
2) Go to menu "Scripting>Run Script" and paste this code:

Code: Select all

//Unzip using winzip     
     IF(<curext>=="zip"){
        run """winzip32"" -min -e <curitem>";
     }
     ELSE{
        echo "Try again, not a zip file";
     }
3) Click OK. Content of zip files should be extracted.

If this works, i can tell you where to include that code so that you can extract files with one double-click.

Re: Utterly dumb question from a newb - zipped folders...

Posted: 27 Aug 2012 01:19
by KareninPa
serendipity wrote:First step is to try if this script works:

1) Select a zip file
2) Go to menu "Scripting>Run Script" and paste this code:

Code: Select all

//Unzip using winzip     
     IF(<curext>=="zip"){
        run """winzip32"" -min -e <curitem>";
     }
     ELSE{
        echo "Try again, not a zip file";
     }
3) Click OK. Content of zip files should be extracted.

If this works, i can tell you where to include that code so that you can extract files with one double-click.

Ok, thank you so much. I am not good with computers, but my son is trying to help me.
Do I copy and paste that gobblety-gook as you have it written? LOL!
K

Re: Utterly dumb question from a newb - zipped folders...

Posted: 27 Aug 2012 01:22
by serendipity
KareninPa wrote:
serendipity wrote:First step is to try if this script works:

1) Select a zip file
2) Go to menu "Scripting>Run Script" and paste this code:

Code: Select all

//Unzip using winzip     
     IF(<curext>=="zip"){
        run """winzip32"" -min -e <curitem>";
     }
     ELSE{
        echo "Try again, not a zip file";
     }
3) Click OK. Content of zip files should be extracted.

If this works, i can tell you where to include that code so that you can extract files with one double-click.

Ok, thank you so much. I am not good with computers, but my son is trying to help me.
Do I copy and paste that gobblety-gook as you have it written? LOL!
K
Yes, copy paste it in run script box and click ok.