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
- Host: GitHub
- URL: https://github.com/philippemarcmeyer/zipservice
- Owner: PhilippeMarcMeyer
- License: mit
- Created: 2019-11-29T12:35:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-30T22:55:02.000Z (over 6 years ago)
- Last Synced: 2025-10-12T15:39:38.343Z (8 months ago)
- Topics: csharp, dotnet, windows-service, zip
- Language: C#
- Homepage:
- Size: 114 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```