1. dos create dir
how can i create directory in dos eu program?
(with open() it doesnt work)
how can i create file with long name in dos eu program?
2. Re: dos create dir
©koda wrote:
>
> how can i create directory in dos eu program?
> (with open() it doesnt work)
> how can i create file with long name in dos eu program?
Hi, this is an example to creadte a dir 'xxx'.
-----------------------
sequence newdir
newdir = "md xxx"
system( newdir, 2)
-----------------------#
Have a nice day, Rolf
3. Re: dos create dir
On Sat, 20 May 2000, tone skoda wrote:
...
> how can i create file with long name in dos eu program?
--
Get a copy of Mike Nelson & Gabriel Boehme's "Enhanced open() for long names"
from the RDS website (http://www.rapideuphoria.com)
Regards,
Irv Mullins
4. Re: dos create dir
----- Original Message -----
From: "Irv Mullins" <irv at ELLIJAY.COM>
To: <EUPHORIA at LISTSERV.MUOHIO.EDU>
Sent: Sunday, May 21, 2000 10:54 AM
Subject: Re: dos create dir
> On Sat, 20 May 2000, tone skoda wrote:
> ...
> > how can i create file with long name in dos eu program?
> --
> Get a copy of Mike Nelson & Gabriel Boehme's "Enhanced open() for long
names"
> from the RDS website (http://www.rapideuphoria.com)
Use dos7 and call the interrupts directly.
Kat