Duplicate Finder Window

Open a new Finder Window with current Folder

  1. Open ScriptEditor.app
  2. Paste the following script
  3. Save as application (Name it with “duplicateFinder.app”)
  4. drag the app onto the toolbar of Finder
  5. click it whenever you want to duplicate current Finder window
tell application "Finder"
get the exists of the front Finder window
if the (exists of the front Finder window) is true then
try
set newWindow to target of front window
set oldView to current view of front window
make new Finder window to newWindow
set current view of front window to oldView
end try
else
try
make new Finder window to alias ":"
set the current view of the front Finder window to column view
end try
end if
end tell

From: http://www.fosk.it/how-to-open-a-new-finder-window-from-current-location.html

Tags: ,

Comments(0)