Skip to content

Commit

Permalink
add "copy to all" flag to script configuration summary
Browse files Browse the repository at this point in the history
closes: #5
  • Loading branch information
niradar committed Jul 22, 2024
1 parent 1cd1eb0 commit c8d40fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion duplicate_files_in_folders/utils_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ def display_initial_config(args: Namespace):
config_items["File Types (Blacklist)"] = ', '.join(args.blacklist_ext)

if not args.delete_empty_folders:
config_items["Empty Folders"] = "Do Not Delete Empty Folders in Scan Folder"
config_items["Empty Folders"] = "Do not delete empty folders in Scan folder"

if args.copy_to_all:
config_items["Additional Settings"] = "Copy duplicate files to all folders"

config_items["Script Mode"] = (
"Create CSV File" if args.action == 'create_csv' else
Expand Down

0 comments on commit c8d40fe

Please sign in to comment.