From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,87bfce9a842f2bf2 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-01-07 07:59:15 PST Path: archiver1.google.com!news2.google.com!fu-berlin.de!uni-berlin.de!61.11.234.69!not-for-mail From: Andreas Almroth Newsgroups: comp.lang.ada Subject: Re: Q:Most reasonable OS Layer Access? Date: Wed, 07 Jan 2004 16:59:32 +0100 Message-ID: References: NNTP-Posting-Host: 61.11.234.69 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de 1073491153 7214674 61.11.234.69 ([198985]) User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en In-Reply-To: X-Enigmail-Version: 0.76.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Xref: archiver1.google.com comp.lang.ada:4178 Date: 2004-01-07T16:59:32+01:00 List-Id: Michael Erdmann wrote: > Dear all, > > i need to create/delete directories, stop processes etc > from Ada 95. I am wondering what the most reasonable way > is to do such things (e.g. using florist or is there something > simpler available)? > Although Florist would be neat to use, I have found GNAT specific packages such as Gnat.OS_Lib and Gnat.Directory_Operations for file and directory access quite adequate. For processes, well, perhaps Gnat.Expect? If not, just import kill, spawn (in Gnat.OS_Lib btw) and other functions from the OS library. Might be a bit too platform specific compared to Florist, but simpler... /Andreas