Alban Gabillon wrote:
> I am beginner in Rebol. I would like to write a script which could save
some of the files which are stored on my local disk into a local novell
server. I tried to define a destination path like
%//Novell_Server/accounts/gabillon but this is not recognised as an existing
path.

The path might be:
        %//Novell_Server/accounts/~gabillon
    Note the "~" in front of "gabillon".

Also you might be confusing path! with file!, perhaps? For example:
        >> type? %//Novell_Server/accounts/gabillon
        == file!
    and:
        >> type? 'Novell_Server/accounts/gabillon
        == path!

I hope that helps!

Andrew Martin
ICQ: 26227169 http://valley.150m.com/
-><-



-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to