Обнаружение изменений в папках

Обнаружение изменений в папках

существует ли способ определить, помещен ли файл в папку (изменение содержимого каталога) (не подкаталог) и выполнить PHP-скрипт (без Cron/Crontab) через CLI в Ubuntu 18.04?

решение1

Как указано в предыдущем ответе, установите inotify-tools:

sudo apt install -y inotify-tools

Теперь вы можете использовать команду inotifywait:

inotifywait -m /your/dir -e create -e move |
while read path action file; do
  # your preferred command here
done

С помощью которых inotifywait --helpвы получаете возможность отслеживать события:

Events:
    access      file or directory contents were read
    modify      file or directory contents were written
    attrib      file or directory attributes changed
    close_write file or directory closed, after being opened in
                writable mode
    close_nowrite   file or directory closed, after being opened in
                read-only mode
    close       file or directory closed, regardless of read/write mode
    open        file or directory opened
    moved_to    file or directory moved to watched directory
    moved_from  file or directory moved from watched directory
    move        file or directory moved to or from watched directory
    create      file or directory created within watched directory
    delete      file or directory deleted within watched directory
    delete_self file or directory was deleted
    unmount     file system containing file or directory unmounted

решение2

Используйте inotifyто, что должно быть частью inotify-toolsпакета.

Скрипт, работающий в фоновом режиме, может выглядеть так

#!/bin/sh

while : 
do
  inotifywatch -e moved_to -e create /watched/dir && {
    php -f /path/to/script.php
  }
done

Связанный контент