[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [SUGGESTION] Some lfs functionality in os library, please!
- From: Sean Conner <sean@...>
- Date: Thu, 8 Sep 2016 03:03:59 -0400
It was thus said that the Great Oliver Kroth once stated:
>
> Regarding directories: I meant actually directory trees or paths.
> Think of CP/M, or the OS/360 which have drives (disks), but no concept
> of sub-directory trees.
CP/M and MS-DOS 1.0 have *some* concept of a "current directory", only in
those cases, it's the "current drive" (each drive having just one top level
directory). For those, you can simply return just the drive specification:
A:
B:
etc
MS-DOS 2.0 and higher does have a concept of a "current directory" in
addition to a "current drive".
For operating systems that don't even have a concept of a "current drive"
can simply return an empty string.
-spc