1. Linux EU
Hy,
When I try to save a file in Linux with Euphoria,
it saves the file in the /root directory
when I use this...
hnd=open("new.fil","w")
and also with this...
hnd=open("./new.fil","w")
Why doesn't it save in the current directory ?
Bye,
PQ
QC
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
2. Re: Linux EU
Patrick Quist writes:
> When I try to save a file in Linux with Euphoria,
> it saves the file in the /root directory
> when I use this...
> hnd=open("new.fil","w")
> and also with this...
> hnd=open("./new.fil","w")
> Why doesn't it save in the current directory ?
I don't know what the problem is. It doesn't do that for me,
and no one else has complained. I wonder if maybe
you have symbolic links that might be confusing you.
Type: ls -l
and look for files that have an arrow after their name,
e.g. -->
Regards,
Rob Craig
Rapid Deployment Software
http://members.aol.com/FilesEu/
3. Re: Linux EU
On Thu, 29 Jul 1999, you wrote:
> Hy,
>
> When I try to save a file in Linux with Euphoria,
> it saves the file in the /root directory
> when I use this...
> hnd=open("new.fil","w")
> and also with this...
> hnd=open("./new.fil","w")
> Why doesn't it save in the current directory ?
It should be impossible for a user to save to the /root directory.
Who are you logged in as (what user name)?
Irv