1. dos create dir
- Posted by =?iso-8859-2?B?qWtvZGE=?= <tone.skoda at SIOL.NET> May 21, 2000
- 427 views
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
- Posted by Rolf Schroeder <r.schr at T-ONLINE.DE> May 21, 2000
- 414 views
©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
- Posted by Irv Mullins <irv at ELLIJAY.COM> May 21, 2000
- 431 views
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
- Posted by Kat <gertie at PELL.NET> May 21, 2000
- 424 views
----- 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