ルーム情報 : "droom" (291件)
最近更新されたメモ一覧 :
docs
見出し一覧 :
被リンクメモ一覧 : (1件)
[index]
[Home] [List] [Recent] [Orphan] [Help] [Edit] [Remove]

AppleScript : Finder Scripting

パスの取得

Windowのパスの取得

tell application "Finder"
  target of window 1 -- alias
  target of window 1 as string -- MacOS Path (:)
  POSIX path of (target of window 1 as string) -- UNIX path (/)
end tell
[Home] [List] [Recent] [Orphan] [Help] [Edit] [Remove]
-->