Skip to content

Instantly share code, notes, and snippets.

@masato3
Created March 8, 2025 17:22
Show Gist options
  • Save masato3/fee397e1dd9fb8a648593d050e27c3cc to your computer and use it in GitHub Desktop.
Save masato3/fee397e1dd9fb8a648593d050e27c3cc to your computer and use it in GitHub Desktop.
VNoteで管理しているノートブック内の_v_attachmentsフォルダを削除
@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