Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: saving files on a novell server

From: snih:rebol:cz at: 6-Dec-2001 11:10

Alban Gabillon wrote:
> Thank you for your answer Andrew, but this does not solve my problem. I am > using MSWindow98. The novell server is connected to my local network and can > be seen via the "network neigboorhood". When using MS Explorer, the path to > the destination directory which is on this novell server is indicated as > \\Novell_server\accounts\GABILLON, but rebol does not recognised it as a > directory (dir? %\\Novell_server\accounts\GABILLON returns false). Actually > rebol tries to find this directory on my local disk.
Why do you solve it that way? We use novell servers thru all our company and it is ABSOLUTELY normal, that we map network volumes to some driver letters. You can do it yourself too. You surely use damned MS client, ignoring NetWare login script, getting you into some data-loss risks, etc. Me, as a network admin - would not allow machine without proper Netware client on our network ... that's in regard to philosophy of Netware usage :-) now - why do you use backslashes? try: dir? %//Novell_server/accounts/GABILLON so ... I tried it and ... simply remove one slash at the beginning of your path ... dir? %/Novell_server/accounts/GABILLON will work, I can bet ;-) Cheers, -pekr-