An open API service indexing awesome lists of open source software.

https://github.com/philippemarcmeyer/zipservice

A windows service that zips files individually from a given source folder to a given target folder
https://github.com/philippemarcmeyer/zipservice

csharp dotnet windows-service zip

Last synced: about 1 month ago
JSON representation

A windows service that zips files individually from a given source folder to a given target folder

Awesome Lists containing this project

README

          

# zipService
A windows service that zips files individually from a given source folder to a given target folder
I did it as a self training to learn about compression with .Net
This service is very simple, minimal, you might want to use the code as a starter to build something else.

v 1.00 : First release

### Configuration :
in App.config if you use the source or in \bin\Release\zipService.exe.config is you use the compiled zipService.exe
set the timer speed : default is loop every 15 seconds,the source folder where you will put the files to compress and the destination folder (targetFolder) where the sipped files will go.

Take notice that the source files are destroyed in the process
(I don't assume any guaranty for that)

```





```
To install the service, search for cmd, right click to execute as administrator and type :
```
sc.exe create ZipService binPath= "C:\...yourpath..\bin\Release\\zipService.exe"
```