Utterly dumb question from a newb - zipped folders...
-
KareninPa
- Posts: 5
- Joined: 24 Aug 2012 15:54
Utterly dumb question from a newb - zipped folders...
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
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
-
admin
- Site Admin
- Posts: 66366
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Utterly dumb question from a newb - zipped folders...
Well, XYplorer does not support zipped folders.
Welcome anyway,
Don
Welcome anyway,
Don
FAQ | XY News RSS | XY X
-
KareninPa
- Posts: 5
- Joined: 24 Aug 2012 15:54
Re: Utterly dumb question from a newb - zipped folders...
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
Thanks for the help.
K
-
admin
- Site Admin
- Posts: 66366
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Utterly dumb question from a newb - zipped folders...
Really? I should know... OTOH I never work with zipped folders. Maybe somebody else can clear this up...
FAQ | XY News RSS | XY X
-
serendipity
- Posts: 3360
- Joined: 07 May 2007 18:14
- Location: NJ/NY
Re: Utterly dumb question from a newb - zipped folders...
Welcome!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
Did you by any chance use 7-zip and it had this unzipping behavior??
-
KareninPa
- Posts: 5
- Joined: 24 Aug 2012 15:54
Re: Utterly dumb question from a newb - zipped folders...
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
K
-
serendipity
- Posts: 3360
- Joined: 07 May 2007 18:14
- Location: NJ/NY
Re: Utterly dumb question from a newb - zipped folders...
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?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
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.
-
KareninPa
- Posts: 5
- Joined: 24 Aug 2012 15:54
Re: Utterly dumb question from a newb - zipped folders...
[/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
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
-
serendipity
- Posts: 3360
- Joined: 07 May 2007 18:14
- Location: NJ/NY
Re: Utterly dumb question from a newb - zipped folders...
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:
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.
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";
}
If this works, i can tell you where to include that code so that you can extract files with one double-click.
-
KareninPa
- Posts: 5
- Joined: 24 Aug 2012 15:54
Re: Utterly dumb question from a newb - zipped folders...
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:3) Click OK. Content of zip files should be extracted.Code: Select all
//Unzip using winzip IF(<curext>=="zip"){ run """winzip32"" -min -e <curitem>"; } ELSE{ echo "Try again, not a zip file"; }
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
-
serendipity
- Posts: 3360
- Joined: 07 May 2007 18:14
- Location: NJ/NY
Re: Utterly dumb question from a newb - zipped folders...
Yes, copy paste it in run script box and click ok.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:3) Click OK. Content of zip files should be extracted.Code: Select all
//Unzip using winzip IF(<curext>=="zip"){ run """winzip32"" -min -e <curitem>"; } ELSE{ echo "Try again, not a zip file"; }
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
XYplorer Beta Club