applescript - 选择文件到路径

时间:2013-10-05 20:07:53

标签: path applescript

我正在写剧本,我需要一些特别的东西:

我想,当我选择一个带有“选择文件”的文件来获得一个变量时,路径就像文本一样。我的剧本:

set thePath to choose file
display dialog "The path is: " & thePath buttons {"OK"} default button 1

所以我想看看:“路径是:Macintosh HD / user /.../ file.jar”

(如果需要:选择的文件是.jar文件)

当我启动脚本时,我可以看到路径。

我希望你理解我。我来自德国,我不会说英语: - )

非常感谢你的时间

2 个答案:

答案 0 :(得分:0)

我不确定你究竟在问什么。也许是这样的?这显示了如何将文本变量添加到路径中的给定位置...

set myVariable to "some text "

set thePath to (choose file) as text

set thePath1 to text 1 thru 10 of thePath
set thePath2 to text 11 thru end of thePath

set newPath to thePath1 & myVariable & thePath2

display dialog "Original path: " & thePath & return & return & "New Path: " & newPath buttons {"OK"} default button 1

答案 1 :(得分:0)

也许是一个非常晚的答案,但为什么不尝试这样的事情:

set thepath to (choose file) -- (or folder if you want to)
display dialog "The chosen path is" & thepath & "If the chosen path is ok then press the button continue." buttons {"Cancel","Continue"} default button 2 cancel button "Cancel" with title "Choose your path" with icon note -- You can make the note icon custom (search for custom applet.icns)