我正在监视带有inotify的文件夹和在监视文件夹上创建的新文件,我需要使用完整的文件路径调用php脚本。
inotifywait -m -r /mnt/test -e create -e moved_to |
while read path action file; do
echo "$path"
echo "$path$file"
done
如果我在“New Folder / test.jpg”中放置一个文件夹“New Folder”和一个文件,该路径只返回“/ mnt / test / New”,而我期待“/ mnt / test / New File / ”。有了这个$ path $ file的结果是“/mnt/test/Newtest.jpg”,而我期待“/ mnt / test / New Folder / test.jpg”