How To Delete Library Cache On Mac
Oct 25, 2017 Choose Usersyour user nameLibraryCaches.+ +2. From the Menu bar, choose EditSelect All.+ +3. To clear your user cache, do the following: Open a Finder window and select “Go to Folder” in the Go menu. Type in /Library/Caches and hit enter to proceed to this folder. Optional step: You can highlight and copy everything to a different folder just in case something goes wrong. Go into each of. Oct 07, 2019 Choose Apple menu About This Mac, then click Storage. This is an overview of available storage space on your Mac, as well as the space used by different categories of files: Click the Manage button to open the Storage Management window, pictured below. (The Manage button is available only in macOS Sierra or later.). Dec 08, 2011 Accessing & Deleting User Cache Files in Mac OS X. From the Mac OS X Desktop, hit Command+Shift+G to bring up “Go To Folder” Type /Library/Caches/ If you want to delete ALL caches, remove everything in this folder – this is generally not recommended; If you want to delete specific app caches, search for the app name and remove it manually. Jun 25, 2019 Most macOS users rely on Time Machine to take regular backups of all data on their hard drives. If you’ve permanently deleted cache files through ‘Command + Shift + Option + Delete’ operation, your latest Time Machine backup is where you can get them back from. Follow the below steps— Connect your Time Machine backup drive to your Mac. A final reason to clear cache on Mac. Cache data works wonders for your Mac and system, but over time it can pile up and slow down your Mac’s performance, taking up the increasing amounts of space. Hopefully, our guide will be everything you needed and more to free up gigabytes of valuable space and reclaim it by cleaning cache. Apr 14, 2017 Use 'Go to the Folder' Press Command + Shift + G buttons to bring out 'Go to the Folder' window. Then type in /Library and hit Go. The /Library directory will come up.
How to find steam library folder on mac. Don't modify the Cleanup Script - things in /System are NOT guaranteed to not be deleted or changed by Software Update.
Instead, make your own startup item in /Library/StartupItems
sudo mkdir /Library/StartupItems/CacheCleaner
You may have to create /Library/StartupItems - I don't remember if OS X ships with an empty one by default or not. If you do have to create it, remember that there is not a space between Startup and Items
Create /Library/StartupItems/CacheCleaner/CacheCleaner with the following contents:
#!/bin/sh
. /etc/rc.common
##
# Start mail server
##
ConsoleMessage 'Cleaning System Cache Files'
rm -fr /System/Library/Caches/*
rm -fr /Library/Caches/*
Don't forget to chmod 755 /Library/StartupItems/CacheCleaner/CacheCleaner or the startup item won't load.
Now create /Library/StartupItems/CacheCleaner/StartupParameters.plist with the following contents:
{
Description = 'Cache Cleaner';
Provides = ('CleanCache');
Requires = ('Cleanup');
Uses = ('Cleanup');
Preference = 'None';
OrderPreference = 'Early';
Messages =
{
start = 'Cleaning System Cache Files';
stop = 'Cleaning System Cache Files';
};
}

This way you don't have to worry about system updates (like Jaguar) trashing your startup item. The line Requires = ('Cleanup'); will tell OS X to run your startup item some time after the standard Cleanup startup item.
Mac User Cache Files
Now to clean your personal caches, you're better off using an applescript that launches during login.
Open Script Editor, and put the following lines into a new script:
do shell script 'rm -rf ~/Library/Preferences/Explorer/Download*Cache'
do shell script 'rm -rf ~/Library/Caches/*'
-- Uncomment the next line if you want to nuke your IE History as well
-- do shell script 'rm -rf ~/Library/Preferences/Explorer/History.html'
Data Dictionary Cache
Save the script somewhere, then go into the Login pane of System Preferences and add the new script to your login items.
jpb