Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个脚本来监视文件夹,当添加 .mp3 或 .m4a 文件时,它会自动将其复制到另一个文件夹。
这可以简单地使用 PowerShell 完成。我假设您希望从源目录中删除复制的文件,以便尚未复制源目录中的任何文件。
语句start-sleep -s 30暂停 30 秒。
start-sleep -s 30
for (;;) { start-sleep -s 30 move-item c:\source\*.mp3 c:\destination move-item c:\source\*.m4a c:\destination }