Created
March 8, 2025 17:22
-
-
Save masato3/fee397e1dd9fb8a648593d050e27c3cc to your computer and use it in GitHub Desktop.
VNoteで管理しているノートブック内の_v_attachmentsフォルダを削除
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
for /r K:\Dropbox\DropsyncFiles\vnotebook %%i in (_v_attachments) do ( | |
rd /s /q %%i | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment