Click here to Skip to main content
15,881,812 members
Articles / Programming Languages / C#

Automatic Zip Extractor

Rate me:
Please Sign up or sign in to vote.
4.87/5 (17 votes)
10 Oct 2013CPOL4 min read 47.7K   2.1K   44  
Automatically unblocks and extracts Zip files in a monitored folder.
<?xml version="1.0"?>
<configuration>
<configSections>
    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
        <section name="AutoExtractor.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
    </sectionGroup>
</configSections>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup><userSettings>
        <AutoExtractor.Properties.Settings>
            <setting name="DirectoryToWatch" serializeAs="String">
                <value />
            </setting>
            <setting name="ShowBalloonOnMinimizeToTray" serializeAs="String">
                <value>True</value>
            </setting>
            <setting name="StartMinimizedToTray" serializeAs="String">
                <value>True</value>
            </setting>
            <setting name="KeyboardShortcutKey" serializeAs="String">
                <value>K</value>
            </setting>
            <setting name="PopUpOnNewFile" serializeAs="String">
                <value>True</value>
            </setting>
            <setting name="DeleteAfterExtraction" serializeAs="String">
                <value>True</value>
            </setting>
            <setting name="MinimizeToTrayOnClose" serializeAs="String">
                <value>True</value>
            </setting>
        </AutoExtractor.Properties.Settings>
    </userSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Veracity
United States United States
I'm a .NET developer, fluent in C# and VB.NET with a focus on SharePoint and experience in WinForms, WPF, Silverlight, ASP.NET, SQL Server. My roots come from a support/system administrator role so I know my way around a server room as well.

I have a passion for technology and I love what I do.

Comments and Discussions