以编程方式将文件夹添加到Finder中的“位置”

时间:2010-08-19 00:39:00

标签: macos finder

我正在试图弄清楚如何以编程方式将文件夹添加到Finder的“地方”侧边栏。我已经看到了通过Finder偏好设置修改它的方法,但我也看到一些应用程序实际上在侧边栏中添加了文件夹。

如果有人对我应该查看的内容有任何建议/指示,我们将不胜感激

(这适用于Snow Leopard和Leopard ...希望它没有改变)

1 个答案:

答案 0 :(得分:11)

试试这个:

-(void) addPathToSharedItem:(NSString *)path
{
    CFURLRef url = (CFURLRef)[NSURL fileURLWithPath:path]; 

    // Create a reference to the shared file list.
    LSSharedFileListRef favoriteItems = LSSharedFileListCreate(NULL,
                                                            kLSSharedFileListFavoriteItems, NULL);
    if (favoriteItems) {
        //Insert an item to the list.
        LSSharedFileListItemRef item = LSSharedFileListInsertItemURL(favoriteItems,
                                                                     kLSSharedFileListItemLast, NULL, NULL,
                                                                     url, NULL, NULL);
        if (item){
            CFRelease(item);
        }
    }   

    CFRelease(favoriteItems);
}