如何从applescript获取名称和路径

时间:2015-06-05 16:23:42

标签: applescript filenames filepath

我有一个文件,比如说," 123.xyz",在TextWrangler中打开。 我怎样才能使用Applescript来获得"它的绝对路径+全名"当前打开的文件。 所以我可以在另一个程序或脚本中使用它。

我修改了一些我在网上找到的代码,但它对我没用。

tell application "TextWrangler"
    tell document 1
        -- Get (absolute path + filename) of the current file
        set FileName to «class ppth» as text
    end tell
end tell 

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

187 // $grid-breakpoints: (
188 //   xs: 0,
189 //   sm: 576px,
190 //   md: 768px,
191 //   lg: 992px,
192 //   xl: 1200px
193 // ); 
194 @include _assert-starts-at-zero($grid-breakpoints);

答案 1 :(得分:-1)

应该工作:

tell document 1 to set myVeryOwnPath to path as text