gpt4 book ai didi

objective-c - 如何在 Finder 中检索所选项目的列表?

转载 作者:行者123 更新时间:2023-12-03 16:22:08 25 4
gpt4 key购买 nike

在我的 Cocoa 应用程序中,我尝试检索在 Finder 窗口中选择的文件列表。我找到了以下方法来做到这一点,但是速度慢得难以忍受。

FinderApplication * finder =
[SBApplication applicationWithBundleIdentifier:@"com.apple.finder"];

SBElementArray * selection = [[finder selection] get];

NSArray<NSString*> * items = [selection arrayByApplyingSelector:@selector(URL)];
// now items contains the URLs as strings of all selected items

从时间角度来看,最昂贵的通话是

SBElementArray * selection = [[finder selection] get];

当对大量文件进行选择时,该方法会长时间挂起,甚至在处理少量文件时也表现不佳。

是否有更好的方法来获取最前面的 Finder 窗口中所有选定文件的 URL?

我需要文件 URL,以便我可以对这些文件执行操作。

最佳答案

您可以使用苹果脚本

tell application "Finder"
get selection
end tell

osascript -e "tell application \"Finder\" to return selection"

关于objective-c - 如何在 Finder 中检索所选项目的列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17775884/

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