Where Mac screenshots go by default, and how to change it
By default, Mac screenshots save to your Desktop as PNG files with a timestamp in the filename. You can change both the location and the file format using the Screenshot app or Terminal commands. The easiest route is the Screenshot app, which has a built-in menu for choosing where new screenshots land.
Open the Screenshot app by pressing Shift + Command + 5. A toolbar appears at the bottom of your screen. Click Options (the menu icon on the right side of the toolbar), and you'll see a "Save to" section. Choose Desktop, Documents, Clipboard, Mail, Messages, or a specific folder you select yourself. Once you pick a location, all future screenshots save there automatically.
If you want screenshots to go to Clipboard instead so you can paste them directly into an email or document without saving a file first, select that option in the same menu. You can also change this setting back anytime—the app remembers your choice until you change it again.
Key Takeaways
- Open Screenshot app with Shift + Command + 5, click Options, and choose your save location from the "Save to" menu.
- Mac screenshots are PNG files by default, but you can change the format to JPG, GIF, TIFF, or PDF using Terminal if you need a different file type.
- Choosing Clipboard as your save location lets you paste screenshots directly into emails or documents without creating a file on your computer.
- Screenshot app settings persist across sessions, so you only need to change them once unless you want a different location later.
Changing screenshot file format from PNG to another type
PNG is the default format because it preserves quality without compression, but Mac also supports JPG, GIF, TIFF, and PDF. To change the format, you need to use Terminal, which is a text-based tool built into every Mac.
Open Terminal (find it in Applications > Utilities, or press Command + Space and type "Terminal"). Paste this command and press Enter:
defaults write com.apple.screencapture type jpg
Replace "jpg" with "gif", "tiff", "pdf", or "png" if you want a different format. After you run the command, new screenshots will save in that format. The change takes effect when ready—you don't need to restart your Mac. If you want to switch back to PNG, run the same command but type "png" at the end.
JPG files are smaller than PNG, which matters if you take many screenshots and storage space is tight. GIF works for animated screenshots. TIFF is rarely useful for most people. PDF is useful if you want to annotate or edit the screenshot in Preview before sharing it.
Changing the filename prefix and timestamp format
By default, screenshots are named "Screenshot 2024-01-15 at 2.30.45 PM.png". You can change the "Screenshot" part to any text you want, though the timestamp always stays. Open Terminal and run:
defaults write com.apple.screencapture name "YourCustomName"
Replace "YourCustomName" with whatever you want—for example, "Screen Grab" or "Capture". New screenshots will then be named "YourCustomName 2024-01-15 at 2.30.45 PM.png". The timestamp cannot be removed entirely, but it helps you keep screenshots in order and find the one you took at a specific time.
If you want to revert to the default "Screenshot" prefix, run the same command but type "Screenshot" as the custom name. Like all Terminal changes, this takes effect when ready.
Using keyboard shortcuts to choose what to capture
Mac offers different shortcuts for different types of screenshots. Shift + Command + 3 captures your entire screen. Shift + Command + 4 lets you drag to select a portion. Shift + Command + 5 opens the Screenshot app toolbar, where you can choose to capture a window, a portion, or the entire screen before you take the shot.
All three shortcuts respect your save location and file format settings. If you've set screenshots to save to Documents as JPG files, every screenshot taken with any of these shortcuts will follow that rule. The Screenshot app toolbar (Shift + Command + 5) also lets you set a timer so the screenshot captures after a 5 or 10 second delay—useful if you need to set up a menu or dialog box before the capture happens.
Reverting all screenshot settings to Mac defaults
If you've made changes in Terminal and want to go back to the original Mac settings, you can reset them one at a time. To reset the save location back to Desktop, open Screenshot app, click Options, and select Desktop. To reset the file format back to PNG, open Terminal and run:
defaults write com.apple.screencapture type png
To reset the filename prefix back to "Screenshot", run:
defaults write com.apple.screencapture name "Screenshot"
You can also reset all screenshot settings at once by running this Terminal command, which removes all custom screenshot preferences and returns everything to Apple's defaults:
defaults delete com.apple.screencapture
After running this command, restart your Mac or log out and back in for the changes to take full effect. Your existing screenshots are not affected—only the settings for new ones.
Troubleshooting when screenshots don't save where you expect
If you changed the save location but screenshots still appear on your Desktop, the most common cause is that you used Shift + Command + 3 or Shift + Command + 4 instead of opening the Screenshot app first. Those older shortcuts sometimes bypass the saved location setting. Always open Screenshot app (Shift + Command + 5) and check Options before taking a screenshot if you want to be sure it goes to your chosen location.
Another possibility is that you selected a folder that no longer exists or that your Mac account no longer has permission to write to. If that happens, open Screenshot app, click Options, and choose a different location—Desktop or Documents are always safe choices. If you used Terminal to change settings and they don't seem to work, make sure you typed the command exactly as shown, including all spaces and quotation marks.
If a screenshot was supposed to go to Clipboard but you can't paste it, the file may have been too large. Clipboard has a size limit on some Macs. Switch back to saving to a folder instead, or try taking a smaller screenshot (a single window rather than the whole screen).
Frequently Asked Questions
Can I make screenshots save to iCloud Drive instead of my Mac?
Yes. In Screenshot app, click Options, then "Save to", and select "Other Location". Navigate to your iCloud Drive folder and select it. From then on, screenshots save directly to iCloud Drive and sync across your devices. This is useful if you want screenshots available on your iPhone or iPad, though the sync takes a few seconds.
What's the difference between PNG and JPG for screenshots?
PNG is lossless, meaning it preserves every pixel exactly—text stays sharp and colors are perfect. JPG compresses the image, making the file smaller but slightly blurrier, especially on text. For screenshots of documents or code, PNG is better. For screenshots of photos or complex images, JPG saves space without much visible loss.
Do I need to restart my Mac after changing screenshot settings?
No. Changes made in Screenshot app take effect when ready. Changes made in Terminal also take effect right away for new screenshots. You only need to restart if you run the command to delete all screenshot settings at once.
Can I have different save locations for different types of screenshots?
No. Mac applies the same save location to all screenshots, regardless of which shortcut you use. If you need screenshots in multiple folders, take them all to one location first, then move them manually afterward, or use a third-party screenshot app that offers per-screenshot location choices.
What happens to screenshots I already took if I change the format?
Existing screenshots are not affected. Changing the format only applies to new screenshots going forward. Your old PNG files stay as PNG files even if you switch to JPG for future captures.