WebFileManager updated

I updated the WebFileManager CodeProject article with some enhancements. It now supports zipping files and column sorting:


This is a companion discussion topic for the original blog entry at: http://www.codinghorror.com/blog/2005/01/webfilemanager-updated.html

J# has built-in zip libraries. I guess that’s native .NET support if you want to include the dll in your project.

There’s an article on MSDN Mag about it:
http://msdn.microsoft.com/msdnmag/issues/03/06/ZipCompression/default.aspx

It says it can modify existing zip files. I haven’t verified.

I’m sure it’s the same Zip/Gzip class that is in Java… and that class cannot MODIFY a Zip file. Create, yes, but not modify.

Would be nice if Zip/Gzip was native to .NET 2.0, sure is handy.

Jeff,

How about creating a setup that can be installed on any IIS box?

Rizzo, what do you mean? I’m not following you.

What I mean is that if you add a setup project to your solution, it will automatically create a setup.exe for you and you don’t have to explain to people how to install it.

Yes-- just delimit your regular expressions with a pipe char

Eg,

“c:\wwwroot\apples|c:\wwwroot\oranges|c:\wwwroot\pears”

Just watch out for regex (or XML!) characters that need to be escaped

Hi,
it is possible to write several AllowedPathPattern in web.config? If YES, how?

Regards, Marko

Is it possible to use paths like c:\Windows\

I’m getting exceptions trying to do it!

Thanks

Really nice solution

Thanks for sharing