AppleScript中选择文件的文件夹路径

时间:2011-11-26 18:47:27

标签: applescript filesplitting

我正在创建使用shell脚本转换mp3文件的简单脚本。我决定使用applescript自动转换。 基本上我正在做的是选择mp3文件,然后使用我的命令行拆分该文件,我想创建一个文件所在的文件夹(脚本将为我创建)。

现在我只需要弄清楚如何获取文件夹的路径。 我如何用applescript做到这一点?

这是我到目前为止的脚本:

set mp3FileToSplit to choose file without invisibles
set thepath to mp3FileToSplit as text
set theposix to POSIX path of thepath

tell application "Finder" to set file_name to (name of mp3FileToSplit)

do shell script "/opt/local/bin/mp3splt -t 3.00 -d  " & quoted form of file_name & " " & quoted form of theposix

现在该脚本的作用是在我的硬盘根目录上创建文件夹,我需要在文件所在的文件夹中。

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

tell application "Finder"
    set f to POSIX file "/private/etc/" as alias
    POSIX path of ((folder of f) as alias) -- /private/
end tell

或者

do shell script "dirname /private/etc/" -- /private