Hi Rick, you wrote...
> From previous posts (ages ago) I thought the following code should > return the physical size of the folder in question. However getting > ->prop() just returns the $obj for some reason. What am I doing wrong? You need to add a ->get after the prop(). Strangely enough I saw this by googling on "Mac::Glue physical_size", and the only thing whacked (modulo "close relatives") was your post of 18th March, containing the vital "get". So you want... my $size = $obj->prop('physical_size')->get; in your code. Cheers, Paul