is it possible to specify a Finder item by its path?
e.g. I want to refresh the icon of a single item. So far, to do this, I call update on every item of the front window:
tell application "Finder" to update every item in front window
But this only works if the folder currently has the item. Is it possible to specify an item with its path, so that the update will work even if the item is not visible in Finder?
tell application "Finder" to update item_x
where item_x
is the item i want to update?