I want to refresh icon for particular file/folder in Finder application.
FNNotifyByPath( (const UInt8 *)folderPath, kFNDirectoryModifiedMessage, kNilOptions );
FNNotifyByPath
is not working for this.
Now i am trying with 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];
}
but this function is also not working.
Can anyone please help me out?
Did you check the value of the
err
dictionary after theexecuteAndReturnError:
call?The correct AppleScript syntax would be:
EDIT TO ADD: Alternately, you could drop down to the AppleEvent level: