Re: Finding invisible files and changing their properties
Re: Finding invisible files and changing their properties
- Subject: Re: Finding invisible files and changing their properties
- From: Ehsan Saffari <email@hidden>
- Date: Sun, 10 Jun 2001 13:24:27 -0600
On 09/06/2001 23:23, "Paul Fisher" <email@hidden> wrote:
>
I am trying to make a couple of temporary filemaker pro files visible, but
>
i can't even find the folder they are in... i know it's there, I can see
>
it with the program "List Files"
>
>
Could some one, assist me in using applescript to make an invisible file
>
visible, Please!
try this:
set x to list folder (path to temporary items)
repeat with i in x
set myfile to (((path to temporary items) as text) & i) as alias
make file visible myfile --> File Visibility osax***
tell application "Finder" to move myfile to the desktop
end repeat
***
http://www.osaxen.com/index.php3?keywords=visibility
cheers
ehsan