https://github.com/openbullet/diffcopy
A tool to copy only the changed files to a new folder, useful to create incremental update packages.
https://github.com/openbullet/diffcopy
Last synced: over 1 year ago
JSON representation
A tool to copy only the changed files to a new folder, useful to create incremental update packages.
- Host: GitHub
- URL: https://github.com/openbullet/diffcopy
- Owner: openbullet
- License: mit
- Created: 2021-02-27T21:16:06.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-01-27T20:12:34.000Z (over 4 years ago)
- Last Synced: 2025-03-23T22:23:08.787Z (over 1 year ago)
- Language: C#
- Size: 8.79 KB
- Stars: 11
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DiffCopy
A tool to copy only the changed and new files to a new folder, useful to create incremental update packages.
The program creates MD5 hashes of files and compares them to the ones of a baseline build to see if they were changed, and copies the changed or newly created files to a new folder.
[Download here](https://github.com/openbullet/DiffCopy/releases/download/1.0/DiffCopy.zip)
## Usage
```
dotnet ./DiffCopy.dll -s sourcedir -n newdir -o outputdir
```
Where
`-s` directory with baseline build
`-n` directory with latest release
`-o` output directory where only the changed or new files will be copied