fixing typo

This commit is contained in:
2025-10-07 12:47:32 -04:00
parent d4509af986
commit fd19f770b1

View File

@@ -6,8 +6,8 @@ import mysql.connector
# Author: Sébastien Plante
# Date: 2025-10-07
# Description:
# This script scans a specified directory for {table} and synchronizes their names and last modified dates
# with a MySQL database. It marks {table} as inactive if they are no longer present in the directory.
# This script scans a specified directory for folders and synchronizes their names and last modified dates
# with a MySQL database. It marks folders as inactive if they are no longer present in the directory.
# Version 1.1
# Changes:
@@ -18,9 +18,9 @@ import mysql.connector
# pip install mysql-connector-python
# Usage:
# python {table}ToSQL.py
# python FoldersToSQL.py
# Optionally, you can specify a different path to scan:
# python {table}ToSQL.py "C:\another folder"
# python FoldersToSQL.py "C:\another folder"
# ================== CONFIGURATION ==================
SCAN_PATH = r"C:\test folder"