osx 10.8刷新取景器

时间:2013-03-19 07:53:08

标签: macos osx-mountain-lion finder

我想以编程方式强制Finder在Mountain Lion中刷新。在以前版本的OSX中,以下代码段可用:

OSStatus    SendFinderSyncEvent( const FSRef* inObjectRef )
{
    AppleEvent  theEvent = { typeNull, NULL };
    AppleEvent  replyEvent = { typeNull, NULL };
    AliasHandle itemAlias = NULL;
    const OSType    kFinderSig = 'MACS';

OSStatus    err = FSNewAliasMinimal( inObjectRef, &itemAlias );
if (err == noErr)
{
    err = AEBuildAppleEvent( kAEFinderSuite, kAESync, typeApplSignature,
        &kFinderSig, sizeof(OSType), kAutoGenerateReturnID,
        kAnyTransactionID, &theEvent, NULL, "'----':alis(@@)", itemAlias );

    if (err == noErr)
    {
        err = AESendMessage( &theEvent, &replyEvent, kAENoReply,
            kAEDefaultTimeout );

        AEDisposeDesc( &replyEvent );
        AEDisposeDesc( &theEvent );
    }

    DisposeHandle( (Handle)itemAlias );
}

    return err;
}

有没有人知道在Mountain Lion上做这个的替代方案?感谢

1 个答案:

答案 0 :(得分:1)

它也不适合我。(Bud ID 12571746)
Apple需要注意有很多开发人员需要这个。在http://bugreporter.apple.com提交错误报告 - 它可能会被重复关闭,但每次投票都很重要。

对于刷新查找器窗口,您可以创建和删除文件。看一下this帖子。