0

在特定文件夹中创建文件后,如何制作脚本以运行另一个程序?可以是 Windows 或 Linux。具体来说,我想在创建文件后立即使用 rclone 将文件移动到远程文件夹。程序本身没有内置监控功能

4

1 回答 1

0

可以是 Windows 或 Linux。

Linux:使用inotifywait.

cd "a specific folder"
inotifywait -me close_write --format %f . | while read file
do  rclone move "$file" …
done

不幸的是,这不适用于 Windows Store 中的 Ubuntu Linux 应用程序,用于安装 Windows 文件系统上的文件。

于 2021-08-28T15:06:02.657 回答