How to change the default location for the standard File Save dialog in Mac OS X?

3

2

Subj. Now it is set to Macintosh HD.

Please, help me to change it !

Update: it was noticed in TextMate at least

Andrei

Posted 2010-07-08T18:51:52.560

Reputation: 1 164

I don't have my Mac in front of me at the moment, but perhaps changing the default "new window" folder in Finder's preferences will change the default save location for other programs. It's worth a shot! – jrc03c – 2010-07-08T19:18:55.983

Well, it points to my home directory, and I really wish File Save to have the same, but it doesn't. – Andrei – 2010-07-08T20:57:09.743

Answers

3

It seems to depend on the application. Just now, with 10.6.4:

  • iCal's Export dialog started in whatever folder I used the last time;
  • Safari and Firefox seem to start with ~/Desktop;
  • NeoOffice started with ~/Documents;
  • Console started with ~/Library/Logs.

So I'm not sure there is any system default; each application seems to have its own idea of where you are likely to want to save a file.

JRobert

Posted 2010-07-08T18:51:52.560

Reputation: 6 128

Most apps remember the folder that either:

  1. Was last accessed by the system's file dialog; or
  2. Was last accessed by that application.
  3. < – msanford – 2010-07-08T22:06:47.537

Hm, you are right, I have this problem with TextMate. Probably I should make my question more narrow. But I have such feeling that there was at least one more app offering the same useless location. – Andrei – 2010-07-09T16:32:49.273

6

The location dialog boxes open to is determined by the application via a parameter they pass into the API call. If the application doesn't store the last used location, or always passes in the same location, there's not much you can do about it.

As long as the program is using the standard Cocoa API, there are many shortcut keys that can be used to jump around to mitigate this problem:

  • Command-Shift-D - Jumps to ~/Desktop
  • Command-Shift-H - Jumps to ~/
  • Command-Shift-A - Jumps to /Applications
  • Command-Shift-C - Jumps to the a virtual folder that displays all mounted disks
  • Command-Shift-G - opens a prompt and allows you to type a (tab-completable) path
  • Command-Shift-. - toggles hidden files (typically).

Should work in both Save and Open standard dialogs.

peelman

Posted 2010-07-08T18:51:52.560

Reputation: 4 580

This is amazing. Are these shortcuts documented anywhere in official apple documentation? – user35742 – 2017-09-27T22:24:08.260

1They are just Finder shortcuts. Look through the Go menu in finder. – peelman – 2017-09-29T11:28:36.697

3

Perhaps you'd be interested in a third-party solution?

Default Folder X allows you to set the default folder on a per-application basis, or system-wide. It also enhances save dialog boxes, giving you folder shortcuts, favourites, etc.

ghoppe

Posted 2010-07-08T18:51:52.560

Reputation: 6 124

First of all, it is not free. Secondly, I still have some hope, that one can fix it in system preferences. At least, I expect it to be possible in good operation systems/apps. But thanks for the tip anyway! – Andrei – 2010-07-09T16:35:31.873

0

Just discovered a great trick for dealing with this and other Finder dialogs, although I guess it may still vary from one app to another. In any case, worked for me when I was using an Upload File dialog from Firefox.

I found that if I simply browsed to the desired folder, then the next time the upload dialog opened it would always reset to ~/Documents folder. But if I selected a location under SEARCH FOR in the sidebar then the Finder dialog would reuse it. So I made a Smart Folder that simply pointed to the desired folder/files and had it saved in the sidebar.

spurvis

Posted 2010-07-08T18:51:52.560

Reputation: 1

0

Not sure if my answer is merely duplicating someone elses, but just in case it'll help someone:

It indeed seems to be application-dependent, which leads me to suspect that the fix lies in the Preferences of each application. For Firefox, for example, when saving downloaded files:

1 If you want the downloaded file to be saved to same folder you chose for the previous download:

Preferences > General > Downloads: Select "Always ask me where to save files" (and NOT "Save files to")

2 If you want the downloaded file to be saved to a consistent default location, regardless of save location of previous download:

Preferences > General > Downloads: Select "Save files to" and browse to the location (and NOT "Always ask me where to save files")

Jooles

Posted 2010-07-08T18:51:52.560

Reputation: 1