How To Delete All Archive Folders?


Recommended Posts

What's the correct Terminal command to delete all BTSync archive folders on a Mac, for example after having delete the BTSync client?

 

 

If you are trying to delete all the .sync folders you could try to run the following:

 

 

find . -type d -name '.sync' -exec rm -df {} \;

 

You might want to run that without the -exec rm -df {} \; first just to make sure it is only finding the .sync folders you are wanting to remove.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.