我正在尝试编写一个将.numbers
文档转换为.csv
文档的脚本。它需要从命令行执行,因此我可以在预提交git hook中使用它。
我编写了一个AppleScript来获取数字文件的路径并将其导出为CSV,但实际的导出将无效,因为“您没有权限。(6)”。我认为这与沙盒有关,但我不能使用AppleScript弹出文件选择器,因为这需要完全自动化。
如何将AppleScript权限导出到此文件?
on run argv
set input_file to item 1 of argv
set output_file to input_file
--strip off the .numbers extention
set delims to AppleScript's text item delimiters
set AppleScript's text item delimiters to "."
if output_file contains "." then set output_file to (text items 1 thru -2 of output_file) as text
-- set the extension to be csv
set output_file to output_file & ".csv"
set output_file to POSIX file output_file
tell application "Numbers"
activate
tell (open input_file)
set activeDocument to it
with timeout of 3 seconds
export activeDocument as CSV to output_file
end timeout
close activeDocument saving yes
end tell
end tell
end run
完整的错误消息是
export_numbers_to_csv.scpt:604:676: execution error: Numbers got an error: The document “DisplayPlusButtonTestScripts.numbers” could not be exported as “DisplayPlusButtonTestScripts”. You don’t have permission. (6)
我的工作目录osascript export_numbers_to_csv.scpt /Users/me/Test\ Scripts/MyTests.numbers
的调用是/Users/me/
。
我有权写入我要求脚本写入的目录。我也尝试导出到临时目录(通过path to temporary items from user domain
),但得到了相同的错误消息。
答案 0 :(得分:2)
如果.csv文件已存在于同一目录中并且名称与您尝试导出的名称相同,则权限可能会变得混乱。如果您创建了.csv文件或至少在某个时刻编辑/打开了它,那么您将有权导出到该名称,但是如果它之前从未打开过您的计算机上的写入权限(例如,如果您下载了它,那么必要的权限就不会存在。
要解决此问题,您可以在“告诉应用程序”#34;数字"'之前将以下行添加到您的脚本中。块:
open for access file output_file
close access file output_file
这告诉脚本打开文件进行写访问,因为只需要打开它来获取必要的权限,然后关闭它。