Is It Safe To Delete Library Audio Folder Mac


Save disk space by deleting copies of Mail attachments | 15 comments | Create New Account
Click here to return to the 'Save disk space by deleting copies of Mail attachments ' hint

You can access the hidden Library folder without using Terminal, which has the side effect of revealing every hidden file on your Mac. This method will only make the Library folder visible, and only for as long as you keep the Finder window for the Library folder open. How To + Recommended. How to Uncover and Delete Hidden Files Cluttering Your Mac. Posted on May 31st, 2016 by Kirk McElhearn I recently looked at how you can get rid of duplicate files on your Mac.This is the first step toward cleaning out your Mac, and freeing up space on your drive. 2017-4-26  Tech support scams are an industry-wide issue where scammers trick you into paying for unnecessary technical support services. You can help protect yourself from scammers by verifying that the contact is a Microsoft Agent or Microsoft Employee and that the phone number is an official Microsoft global customer service number. 2014-11-17  Save disk space by deleting copies of Mail attachments 15 comments. After noticing that this folder was taking up a lot of space on my mac, I cleared it out, and then set up a Hazel action for it, so that files added to it will only be in there for a few months, then trashed. Barefootguru on May 18, '13 04:54:30PM Under Mountain Lion. 2014-11-17  A few months ago, I had a crash involving iTunes from which I could recover after the usual fsck at restart. However, one thing would not come back: 1.4Gb of my hard disk seemed to be lost. I tried many attempts with Norton Disk Doctor, File Buddy, etc., to locate new files and solve the issue. 2020-4-4  Some Mac users may want to clear caches and clean out temporary files from Mac OS. Caches and temporary files can include things like web browser cache and history, messaging cache, app specific temp files and caches, partially completed downloads, and much more.

Delete

2020-3-30  Yes, it is safe. That said, don't just delete all the contents of your cache folder without reason. It can be beneficial to clear out those taking up the significant space in your /Library/Caches/ if you need to free some up, but you really shouldn't clear any contents of your /System/Caches unless there is a problem. As would be expected, you will find that the programs you access most often.

The following comments are owned by whoever posted them. This site is not responsible for what they say.
Save disk space by deleting copies of Mail attachments

Note that the name of this folder is localized. In German it's called 'Geladene Mail-Anhänge' (Downloaded Mail Attachments)

Save disk space by deleting copies of Mail attachments

@kirkmc - Mail saves the attachments for offline viewing.

Save disk space by deleting copies of Mail attachments

I was going to say the same -- for IMAP connections, Mail keeps these offline so they're available without needing to re-download them each time...
Just another reason to stick with good-ol' POP...
Cheers,
Peter

Is It Safe To Delete Library Audio Folder Mac
Save disk space by deleting copies of Mail attachments

Right--it actually makes a fair amount of sense on IMAP connections so you don't end up re-downloading large attachments repeatedly, since I'm pretty sure IMAP attachments are NOT downloaded along with the messages during a sync.
Example: I have a message with 10MB of large images attached to it in an IMAP account. With the 'delete on quit' option selected, every time I view that message, if I have quit Mail since the last time, it will need to re-download those 10MB of images to display them. For someone like me, who passes a lot of images around via email (business reasons), that would be incredibly annoying--it would render Mail.app nearly unusable, in fact.

Save disk space by deleting copies of Mail attachments

Not really. Your comment made me test it - I disconnected from my internet connections and test-opened a bunch of attachments. They all opened no problem, without complaining that there was no connection to the IMAP server. I quit Mail, saw them deleted from the above mentioned folder, and repeated.
Attachments are stored offline in Mail, and this folder is a duplicate location when the user decides to open the attachment...
Just my 2 cents..

Save disk space by deleting copies of Mail attachments

Interesting. I stand entirely corrected, then.
I had always assumed, since when you first view an IMAP message with large image attachments you can see the image attachments queueing for download, that they were going into that folder.
This being the case, this is a very valuable tip for those short on disk space (those of us with SSDs, in particular).

Save disk space by deleting copies of Mail attachments

Actually you were partially right. The thing is that most email clients have an OPTION that allows you to keep copies of messages with or without attachments for offline viewing.
For your desktop or laptop computer turning this option on makes a LOT of sense, and I believe it is the default for Apple Mail and Outlook.
For other mobile devices like smartphones and tablets this option does NOT make a lot of sense so many mail clients don't even include it.

Is It Safe To Delete Library Audio Folder Mac Os

Save disk space by deleting copies of Mail attachments

After noticing that this folder was taking up a lot of space on my mac, I cleared it out, and then set up a Hazel action for it, so that files added to it will only be in there for a few months, then trashed.

Is It Safe To Delete Library Audio Folder Mac Version

Save disk space by deleting copies of Mail attachments

Under Mountain Lion my version of this folder is ~/Library/Containers/com.apple.mail/Data/Library/Mail Downloads
@petersconsult not sure why you'd want to run POP in this day and age. I check the same e-mail accounts on 4 different devices, IMAP's the only way to stay sane doing that. http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol#Advantages_over_POP

Save disk space by deleting copies of Mail attachments
Save disk space by deleting copies of Mail attachments

Seriously.

I'm as big a fan of local storage as the next luddite, but when you try to access three different mail accounts from a home desktop, a home laptop, a work desktop, an iPhone, and an iPod Touch in any functional way, POP does not cut it. Besides, with offline caching, there's really not that much difference between IMAP and POP (unless the IMAP server instructs your local computer to purge the entire contents of a folder or something, in which case you're relying on your local backup).

Save disk space by deleting copies of Mail attachments

Thanks for the heads up. I found my downloads folder in the same place. Running Mountain Lion 10.8.3.

Save disk space by deleting copies of Mail attachments
You can use the following to wipe out the attachment dirs: find ~/Library/Mail -name 'Attachments' -depth -exec rm -rf {} ;
Save disk space by deleting copies of Mail attachments

to clear disk space basically I create rules, It helps me to manage my account more efficiently.

Save disk space by deleting copies of Mail attachments

Hello,
I had the same issue about having large amount of attachments in Mail, so I've done a little script to save attachments file into an external drive or directory, and also delete all attachments files gracefully
If IMAP, nor just 'find', is not enough for your case, maybe the script could be useful:
https://github.com/blues-man/mail-attachments-util
chmod 755 mail_util.sh
# Recover all attachments, organized by accounts and Folders, putting them on an external drive set explicitly in the script
./mail_util.sh
# Delete all attachments asking for each account
./mail_util.sh --delete
# Delete all attachments asking for each file per account
./mail_util.sh --delete --ask
Bye