Advertisement
ulfben

Clear Conflicted Copies from Dropbox-folders

Dec 3rd, 2011
635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. :: A Microsoft batch script that’ll find and remove all conflicted copies
  2. :: in your DropBox folder.
  3. ::
  4. :: Save as a .bat-file in your DropBox root and run by doubleclicking.
  5. ::
  6. :: Changing %CD% to a path allows running from wherever, obviously.
  7.  
  8. @echo off
  9. echo Deleting all files whose name contain "conflicted copy" in folder: %CD%
  10. pushd %CD%
  11. del /s *"conflicted copy"*.*
  12. popd
  13. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement