I> Okay, I *used* to know how to do this, but I can't manage to find
I> any help on it for some reason.. 

I> How does Rebol make files Hidden/Read-Only/Archived/whatever else?

SET-MODES.

>> get-modes first read %. 'file-modes
== [creation-date access-date modification-date owner-write archived hidden system]
>> get-modes first read %. 'hidden
== false
>> set-modes first read %. [hidden: true]
>> get-modes first read %. 'hidden
== true

-- Gregg                         

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.

Reply via email to