File Monitor (Python)
Download Python Script
# MIT License
# Copyright (c) [2026] [The Author]
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import time
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
# Define the folder you want to monitor **CHANGE PATH**
WATCH_DIRECTORY = "C:\Your\Path"
class MyHandler(FileSystemEventHandler):
"""Handles file system events and prints an alert."""
def on_modified(self, event):
if not event.is_directory:
print(f'ALERT: File modified: {event.src_path}')
def on_created(self, event):
if not event.is_directory:
print(f'ALERT: File created: {event.src_path}')
def on_deleted(self, event):
if not event.is_directory:
print(f'ALERT: File deleted: {event.src_path}')
if __name__ == "__main__":
event_handler = MyHandler()
observer = Observer()
# Schedule the observer to watch the directory recursively
observer.schedule(event_handler, WATCH_DIRECTORY, recursive=True)
observer.start()
print(f"Monitoring started for: {WATCH_DIRECTORY}. Press Ctrl+C to stop.")
try:
# Keep the script running until manually stopped
while True:
time.sleep(1)
except KeyboardInterrupt:
observer.stop()
observer.join()