gpt4 book ai didi

macos - 显示 Finder 文件属性

转载 作者:行者123 更新时间:2023-12-02 03:46:00 30 4
gpt4 key购买 nike

通过

ws = NSWorkspace.sharedWorkspace()
ws.selectFile_inFileViewerRootedAtPath_(filename, None)

我可以打开一个新的 Finder 窗口并选择特定文件。

现在我不仅要选择一个文件,还要打开该文件的 Finder 属性窗口。

有没有简单的方法来做到这一点? (最好是 Python 代码,但我可以自己翻译。)

最佳答案

我不相信有任何 Cocoa API 可以直接执行此操作。但是,以下 AppleScript 可以完成这项工作:

tell application "Finder"
activate
open information window of item 1 of (selection as list)
end tell

您可以使用 NSAppleScriptosascript 命令调用它。在 Cocoa 中,您还可以使用 Scripting Bridge,但我不确定这对 Python 是否有帮助。 (对 Apple 的文档进行一些搜索后发现了关于使用 Python 脚本桥的建议 py-appscript。)

关于macos - 显示 Finder 文件属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17132748/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com