Metadata-Version: 2.1
Name: remove_duplicates
Version: 1.0.3
Summary: Utility to recursive search and move/delete duplicate files of the same size and context in specified folder.
Home-page: https://github.com/octaprog7/remove_duplicates
Author: Roman Shevchik
Author-email: goctaprog@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Requires-Python: >=3.7.2,<3.12
Description-Content-Type: text/markdown
License-File: LICENSE.md

Utility to recursive search and move/delete duplicate files of the same size and context in specified folder.

If the storage folder (recycle_bin) is not specified, then duplicate files will be deleted!
If the number of command line parameters is zero, then the search folder = current folder.

### Command line parameters
    --start_folder (first parameter): the folder with which the recursive search begins
    --recycle_bin (second parameter): optional folder for storing duplicate files (move file).
    --log_file: log file.
    --fn_pattern: File name pattern. Only files matching the pattern are processed!
                   Provides support for Unix shell-style wildcards. Default value is "*.*"

### Call example
    remove_dup --start_folder=E:\YoutubeChannelsCopy --recycle_bin=E:\reserved --log_file=E:\reserved\logfile.txt --fn_pattern="*.png" 
## Work log
![alt text](https://github.com/octaprog7/remove_duplicates/blob/master/warn_del.png)
## PyPi
https://pypi.org/project/remove-duplicates/

After installation use rmdup --help instead of remove_dup

