Cocoa 随处搜索文件

发布于 2024-11-07 10:27:37 字数 112 浏览 0 评论 0原文

有没有办法可以在硬盘驱动器上标记文件,基本上,在用户移动文件后,操作系统会跟踪该文件,因此当我想再次访问它时,我只需指定标签,它就会告诉我地点? 我知道我可以扫描整个高清,但这会花费太长时间...... 谢谢。

Is there a way I can tag a file on the hard drive, and basically, after the user moves it, the OS keeps track of the file, so when I want to access it again, I just specify the tag and it tells me the location?
I know that I can scan through the entire HD but that would take too long...
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫南 2024-11-14 10:27:37

查看 NSURL

 - (NSData *)bookmarkDataWithOptions:(NSURLBookmarkCreationOptions)options includingResourceValuesForKeys:(NSArray *)keys relativeToURL:(NSURL *)relativeURL error:(NSError **)error

如果您不支持 10.5,而是支持 10.6 及更高版本,您可以使用以下的 NSURLBookmarkCreationOption

NSURLBookmarkCreationPreferFileIDResolution

:使用 fileID 解析 url。

if you are not supporting 10.5, but 10.6 and beyond, you might look at NSURL's

 - (NSData *)bookmarkDataWithOptions:(NSURLBookmarkCreationOptions)options includingResourceValuesForKeys:(NSArray *)keys relativeToURL:(NSURL *)relativeURL error:(NSError **)error

using the NSURLBookmarkCreationOption of:

NSURLBookmarkCreationPreferFileIDResolution

resolves the url using the fileID.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文