Ubuntu – How to copy a path out of a open/save dialog and paste it into Nautilus

nautilus

In Windows, I frequently will do things like copy a folder path from a save/open dialog and paste it into the address bar of Windows Explorer to browse the folder. This seems to be even more needed in Ubuntu owing to the crippled file dialog (can't rename, move, delete, etc) How can I do this in Ubuntu?

Specifically, how do I:

  1. Copy paths out of Save/Open dialogs
  2. Paste paths into an 'Address Bar' so Nautilus can go right there

Best Answer

Pasting paths into Nautilus' "address" bar

You can activate the "location" view with CTRL+L. To permanently show the path instead of "breadcrumbs" you will have to manually change a dconf key:

gsettings set org.gnome.nautilus.preferences always-use-location-entry true

To revert the changes simply execute the following command:

gsettings set org.gnome.nautilus.preferences always-use-location-entry false

enter image description here

Copying file paths in the Save/Open dialog with Nautilus 3.4.2

As @AliNa pointed out, it used to be that you could access the location of a file or folder in the save/open dialog in the same manner as you can in a regular Nautilus window

This feature has been abolished in recent Nautilus releases as part of GNOME's design philosophy.

However, you can still access the file and directory paths from the context menu:

http://i.imgur.com/tvlBjum.png

It seems as though this method has been removed as well in more recent revisions of Nautilus (the ones that ship with Ubuntu >12.10)...


Sources:

How can I copy the current path from Nautilus?

Typing location path instead of clicking directory buttons in the file picker dialog?

How do I change dconf keys without a gui (for a post-install script)?

Related Question