継承関係(Inheritance)

item
disk item
 └file
  └property list file

属性(Properties)

fileクラスから継承された属性
contents property list item[r/o]
プロパティリスト項目

解説(Note)

 まず、property list file "パス"でファイルを指定して、contents属性で内容を取り出す。
 ただし、多くの場合と同じくcontents of は省略可能なので、要素としてproperty list itemが存在するかのように利用できる。

用例(Example)

  1. tell application "System Events"
    	set thePlist to property list file ((choose file) as string) 
    	property list item "CFBundleDocumentTypes" of thePlist
    end tell