Bạn có thể gán một phím tắt cho một tập lệnh như thế này:
tell application "Finder"
try
target of Finder window 1
make new Finder window to result
on error
make new Finder window to home
end try
end tell
Điều này cũng sẽ thay đổi một số thuộc tính:
tell application "Finder"
try
tell Finder window 1
set t to target
set b to bounds
set cv to current view
set sw to sidebar width
set sv to statusbar visible
set tv to toolbar visible
end tell
on error
make new Finder window to home
return
end try
make new Finder window to t
tell result
set bounds to {(item 1 of b) + 20, (item 2 of b) + 20, (item 3 of b) + 20, (item 4 of b) + 20}
set current view to cv
set sidebar width to sw
set statusbar visible to sv
set toolbar visible to tv
end tell
end tell
target of Finder window 1
là thư mục hiển thị trên thanh tiêu đề. Nó không phụ thuộc vào lựa chọn trong chế độ xem danh sách.
Bạn cũng có thể sử dụng ⌃⌘ ↑ để hiển thị vị trí hiển thị trên thanh tiêu đề trong một cửa sổ mới. Nó không hoạt động trong chế độ xem cột nếu thanh công cụ bị ẩn.