This commit is contained in:
David Maisonave
2024-08-05 21:08:56 -04:00
parent 1959939db3
commit 227c69d92d
2 changed files with 4 additions and 1 deletions

View File

@@ -3,6 +3,9 @@
# Get the latest developers version from following link: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/DupFileManager # Get the latest developers version from following link: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/DupFileManager
# Note: To call this script outside of Stash, pass any argument. # Note: To call this script outside of Stash, pass any argument.
# Example: python DupFileManager.py start # Example: python DupFileManager.py start
# Research following links to complete this plugin:
# https://github.com/WithoutPants/stash-plugin-duplicate-finder
import os import os
import sys import sys
import time import time

View File

@@ -9,7 +9,7 @@ config = {
# Enable to monitor changes in file system for modification flag. This option is NOT needed for Windows, because on Windows changes are triggered via CREATE, DELETE, and MOVE flags. Other OS may differ. # Enable to monitor changes in file system for modification flag. This option is NOT needed for Windows, because on Windows changes are triggered via CREATE, DELETE, and MOVE flags. Other OS may differ.
"scanModified": False, "scanModified": False,
# Timeout in seconds. This is how often it will check if a stop signal is sent. # Timeout in seconds. This is how often it will check if a stop signal is sent.
"timeOut": 60, "timeOut": 3600,
# Enable to exit FileMonitor by creating special file in plugin folder\working # Enable to exit FileMonitor by creating special file in plugin folder\working
"createSpecFileToExit": True, "createSpecFileToExit": True,
# Enable to delete special file imediately after it's created in stop process # Enable to delete special file imediately after it's created in stop process