Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Compressed Zipped Folder

Reply
Thread Tools

Compressed Zipped Folder

 
 
Roland Hall
Guest
Posts: n/a
 
      07-27-2005
It appears what I'm reading is that Windows 2K3, like XP, supports what MSFT
calls a compressed zipped folder. Is this exposed so I can effectively use
FSO or a shell to create one of these and move some files into it and then
offer it as a download on my web site?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


 
Reply With Quote
 
 
 
 
Aaron Bertrand [SQL Server MVP]
Guest
Posts: n/a
 
      07-27-2005
> It appears what I'm reading is that Windows 2K3, like XP, supports what
> MSFT
> calls a compressed zipped folder. Is this exposed so I can effectively
> use
> FSO or a shell to create one of these and move some files into it and then
> offer it as a download on my web site?


My limited experimentation in internal projects has led me to implement a
solution using wzcline instead (WinZip 9.0's command-line utility). Being
internal, we weren't as limited by the issues that impact most web sites
(e.g. running as IUSR).

In ASP.Net we have used ICSharp's zip libraries (don't recall the URL
handily) and this worked quite well, but these were for desktop or
command-line applications and not web-based ...

If you do find out about any APIs that are usable from an ASP perspective,
please post back here, because I'd be interested in trying them out (and
comparing them to the performance of wzcline).


 
Reply With Quote
 
 
 
 
Ray Costanzo [MVP]
Guest
Posts: n/a
 
      07-27-2005
No, unfortunately, there is no built-in automation support for zip
"folders." You still have to use some third party zip handler for
automating zipping things. I'm not sure why MS didn't open it up to
scripting, but I suppose there's a reason.

Ray at work


"Roland Hall" <> wrote in message
news:...
> It appears what I'm reading is that Windows 2K3, like XP, supports what

MSFT
> calls a compressed zipped folder. Is this exposed so I can effectively

use
> FSO or a shell to create one of these and move some files into it and then
> offer it as a download on my web site?
>
> --
> Roland Hall
> /* This information is distributed in the hope that it will be useful, but
> without any warranty; without even the implied warranty of merchantability
> or fitness for a particular purpose. */
> Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
> WSH 5.6 Documentation -

http://msdn.microsoft.com/downloads/list/webdev.asp
> MSDN Library - http://msdn.microsoft.com/library/default.asp
>
>



 
Reply With Quote
 
Roland Hall
Guest
Posts: n/a
 
      07-28-2005
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:...
: No, unfortunately, there is no built-in automation support for zip
: "folders." You still have to use some third party zip handler for
: automating zipping things. I'm not sure why MS didn't open it up to
: scripting, but I suppose there's a reason.

They didn't even open it up to the command-line.
Thanks Ray.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


 
Reply With Quote
 
Aaron Bertrand [SQL Server MVP]
Guest
Posts: n/a
 
      07-28-2005
I assume you've investigated the 3rd party options? ZBit's component worked
*quite* well for me in a past project...

http://www.aspfaq.com/2187


 
Reply With Quote
 
Roland Hall
Guest
Posts: n/a
 
      07-28-2005
"Aaron Bertrand [SQL Server MVP]" wrote in message
news:...
:> It appears what I'm reading is that Windows 2K3, like XP, supports what
: > MSFT
: > calls a compressed zipped folder. Is this exposed so I can effectively
: > use
: > FSO or a shell to create one of these and move some files into it and
then
: > offer it as a download on my web site?
:
: My limited experimentation in internal projects has led me to implement a
: solution using wzcline instead (WinZip 9.0's command-line utility). Being
: internal, we weren't as limited by the issues that impact most web sites
: (e.g. running as IUSR).
:
: In ASP.Net we have used ICSharp's zip libraries (don't recall the URL
: handily) and this worked quite well, but these were for desktop or
: command-line applications and not web-based ...
:
: If you do find out about any APIs that are usable from an ASP perspective,
: please post back here, because I'd be interested in trying them out (and
: comparing them to the performance of wzcline).

The guy is interested in winzip so that'll probably work out just fine. I
think I saw something APIs when I was researching. I'll recheck and let you
know.

Thanks.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


 
Reply With Quote
 
Ray Costanzo [MVP]
Guest
Posts: n/a
 
      07-28-2005
Winzip has a command line add-on. I like it.
http://www.winzip.com/downcl.htm

Sample code (I think this works anyway. I don't trust any of my code that
is from February of 2003. ;] )

Ray at work

Dim objShell
sZipfile
sZipsource

sZipfile = Server.MapPath("/test.zip")
sZipsource = Server.MapPath("/")
Set objShell = Server.CreateObject("WScript.Shell")
objShell.Run "wzzip " & sZipfile & " " & sZipsource & "\*.asp" ,0,True
Set objShell = Nothing

Ray at work

"Roland Hall" <> wrote in message
news:...
> "Aaron Bertrand [SQL Server MVP]" wrote in message
> news:...
> :> It appears what I'm reading is that Windows 2K3, like XP, supports what
> : > MSFT
> : > calls a compressed zipped folder. Is this exposed so I can

effectively
> : > use
> : > FSO or a shell to create one of these and move some files into it and
> then
> : > offer it as a download on my web site?
> :
> : My limited experimentation in internal projects has led me to implement

a
> : solution using wzcline instead (WinZip 9.0's command-line utility).

Being
> : internal, we weren't as limited by the issues that impact most web sites
> : (e.g. running as IUSR).
> :
> : In ASP.Net we have used ICSharp's zip libraries (don't recall the URL
> : handily) and this worked quite well, but these were for desktop or
> : command-line applications and not web-based ...
> :
> : If you do find out about any APIs that are usable from an ASP

perspective,
> : please post back here, because I'd be interested in trying them out (and
> : comparing them to the performance of wzcline).
>
> The guy is interested in winzip so that'll probably work out just fine. I
> think I saw something APIs when I was researching. I'll recheck and let

you
> know.
>
> Thanks.
>
> --
> Roland Hall
> /* This information is distributed in the hope that it will be useful, but
> without any warranty; without even the implied warranty of merchantability
> or fitness for a particular purpose. */
> Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
> WSH 5.6 Documentation -

http://msdn.microsoft.com/downloads/list/webdev.asp
> MSDN Library - http://msdn.microsoft.com/library/default.asp
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
zipped folder fulio pen HTML 34 01-06-2012 04:39 AM
Problem with compressed (zipped) folder application Barbara92021 Software 0 11-23-2006 09:30 PM
Zipped folder problem =?Utf-8?B?Y2FzaGRlc2ttYWM=?= ASP .Net 0 07-17-2006 08:46 AM
Question On XP's "Compressed (Zipped) Folder" Application Robert11 Computer Support 1 11-22-2005 05:13 PM
Compressed folder jbob Computer Support 4 11-22-2004 02:56 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57