Re: Creating directories ? [message #20078] |
Thu, 18 May 2000 00:00 |
LC's No-Spam Newsread
Messages: 18 Registered: September 1997
|
Junior Member |
|
|
>> Is there a way to create directories using IDL procedures or functions ?
>> Can I call system commands from IDL ?
>
> IDL> spawn, 'mkdir /path/to/new/directory'
why not just like this ?
IDL> $ mkdir /path/to/new/directory
--
------------------------------------------------------------ ----------
nospam@ifctr.mi.cnr.it is a newsreading account used by more persons to
avoid unwanted spam. Any mail returning to this address will be rejected.
Users can disclose their e-mail address in the article if they wish so.
|
|
|
Re: Creating directories ? [message #20091 is a reply to message #20078] |
Wed, 17 May 2000 00:00  |
Bernard Puc
Messages: 65 Registered: January 1998
|
Member |
|
|
Nicolas Decoster wrote:
>
> Hi.
>
> Is there a way to create directories using IDL procedures or functions ?
> Can I call system commands from IDL ?
On a unix platform you can create a directory like this:
IDL> spawn, 'mkdir /path/to/new/directory'
--
Bernard Puc AETC, INC.
bpuc@va.aetc.com 1225 Jefferson Davis Highway #800
(703) 413-0500 Arlington, VA 22202
|
|
|