Metadata-Version: 2.1
Name: compare-folders
Version: 3.0.0
Summary: Tool to compare two folders
Author: skarfie123
Author-email: rahulpai@rocketmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
Description-Content-Type: text/markdown

# FolderCompare

![GitHub release (latest by date)](https://img.shields.io/github/v/release/skarfie123/FolderCompare)
![GitHub all releases](https://img.shields.io/github/downloads/skarfie123/FolderCompare/total)
![GitHub issues](https://img.shields.io/github/issues/skarfie123/FolderCompare)
![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)

## Installation

`pipx install compare-folders`

## Usage

`compare-folders path\to\source path\to\destination`

This will write a markdown file with:

- missing files from the source not in the destination
- extra files in the destination not in the source
- files in both locations with different modification dates

It will also print a table of stats.

Use `-o`/`--output` to override the output filename. If the output file already exists, the resulsts will be appended to the file, unless you specify `--no-append`, in which case the file will be overwritten.

