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.
フォルダーを (2 分ごとに) 自動的にスキャンし、そのフォルダーにファイルが表示されると、別のフォルダーに (コピーではなく) 自動的に移動するスクリプトを使用しています。何か案は?これはバッチ スクリプトで実現できますか。
2 分 = 120 秒。
for /l %%a in (0) do ( if exist "folder\*" move "folder\*" "elsewhere" ping -n 121 localhost > nul )