Как обновить окно поиска? - PullRequest
2 голосов
/ 17 января 2012

Я хочу обновить значок для определенного файла / папки в приложении Finder.

FNNotifyByPath( (const UInt8 *)folderPath, kFNDirectoryModifiedMessage, kNilOptions );  

FNNotifyByPath не работает для этого. Теперь я пытаюсь с AppleScript

+(void) refreshIconForItem : (NSString *)itemPath
{
    NSString *source=[NSString stringWithFormat:@"tell application \"Finder\" to update \"%@\"",[NSString stringWithUTF8String:itemPath]];
    NSAppleScript *update=[[NSAppleScript alloc] initWithSource:source];
    NSDictionary *err;
    [update executeAndReturnError:&err];
}

но эта функция также не работает.

Может кто-нибудь помочь мне?

1 Ответ

5 голосов
/ 17 января 2012

Проверяли ли вы значение словаря err после вызова executeAndReturnError:?

Правильный синтаксис AppleScript будет:

@ "сообщить приложению \" Finder \ "об обновлении файла POSIX \"% @ \ ""

РЕДАКТИРОВАТЬ В ДОБАВИТЬ: Вы также можете перейти на уровень AppleEvent:

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;
}
...