我需要获取 Finder 侧边栏的收藏夹部分中显示的对象路径(对于当前用户)。我怎样才能做到这一点?
问问题
1965 次
3 回答
4
本身没有 Cocoa API。您将使用 LSSharedFileList API。API 是公开的,但唯一的文档是头文件 /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSSharedFileList.h。您想要kLSSharedFileListFavoriteItems
(并且可能kLSSharedFileListFavoriteVolumes
)列表类型。
于 2012-05-25T08:54:01.977 回答
4
获取共享文件列表只是第一部分,您仍然可能希望获取带有路径的实际字符串对象。这是一个小代码片段,可让您在查找器侧边栏的收藏夹部分中获取每个对象的路径。
UInt32 seed;
LSSharedFileListRef sflRef = LSSharedFileListCreate(NULL,
kLSSharedFileListFavoriteItems,
NULL);
CFArrayRef items = LSSharedFileListCopySnapshot( sflRef, &seed );
for( size_t i = 0; i < CFArrayGetCount(items); i++ )
{
LSSharedFileListItemRef item = (LSSharedFileListItemRef)CFArrayGetValueAtIndex(items, i);
if( !item )
continue;
CFURLRef outURL = NULL;
LSSharedFileListItemResolve( item, kLSSharedFileListNoUserInteraction, (CFURLRef*) &outURL, NULL );
if( !outURL )
continue;
//The actual path string of the item
CFStringRef itemPath = CFURLCopyFileSystemPath(outURL,kCFURLPOSIXPathStyle);
// TODO: Do whatever you want to do with your path here!!!!
CFRelease(outURL);
CFRelease(itemPath);
}
CFRelease(items);
CFRelease(sflRef);
于 2012-10-30T21:08:01.490 回答
2
使用LSSharedFileList
API(LaunchServices/LSSharedFileList.h.)
LSSharedFileListRef favoriteItems = LSSharedFileListCreate(NULL,
kLSSharedFileListFavoriteItems, NULL);
于 2012-05-25T18:25:42.700 回答