Deutsch   English   Français   Italiano  
<20240819133005.00003757@gmail.com>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!weretis.net!feeder9.news.weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: John Ames <commodorejohn@gmail.com>
Newsgroups: comp.unix.shell,comp.unix.programmer,comp.lang.misc
Subject: Re: Python (was Re: I did not inhale)
Date: Mon, 19 Aug 2024 13:30:05 -0700
Organization: A noiseless patient Spider
Lines: 27
Message-ID: <20240819133005.00003757@gmail.com>
References: <uu54la$3su5b$6@dont-email.me>
	<g52cnWOOwoz_son7nZ2dnZfqnPWdnZ2d@brightview.co.uk>
	<uvbe3m$2cun7$1@dont-email.me>
	<uvbfii$3mom0$1@news.xmission.com>
	<20240412094809.811@kylheku.com>
	<87il0mm94y.fsf@tudado.org>
	<way-20240413091747@ram.dialup.fu-berlin.de>
	<87il0lldf8.fsf@tudado.org>
	<choices-20240413123957@ram.dialup.fu-berlin.de>
	<v9lm2k$12qhv$1@dont-email.me>
	<v9m4gd$14scu$1@dont-email.me>
	<20240815182717.189@kylheku.com>
	<v9npls$1fjus$1@dont-email.me>
	<v9posc$1rpdj$1@dont-email.me>
	<v9pvoo$1sn55$1@dont-email.me>
	<v9r60h$2289h$2@dont-email.me>
	<v9sa91$2afht$1@dont-email.me>
	<v9tv8o$2iahp$1@dont-email.me>
	<v9uso3$2pdrg$2@dont-email.me>
	<v9v0e0$2q822$1@dont-email.me>
	<v9v7d4$2r6q2$1@dont-email.me>
	<87jzgccltj.fsf@nosuchdomain.example.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Injection-Date: Mon, 19 Aug 2024 22:30:11 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="8b77fd0b831509694e5900a56f16b867";
	logging-data="3165884"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX18rVXQLSVJCGgm2U9JtDK5w+wffcgp8Wnc="
Cancel-Lock: sha1:wEzCOQUsZY+1vh9DApA+VC25WdE=
X-Newsreader: Claws Mail 4.2.0 (GTK 3.24.38; x86_64-w64-mingw32)
Bytes: 3136

On Mon, 19 Aug 2024 13:14:00 -0700
Keith Thompson <Keith.S.Thompson+u@gmail.com> wrote:

> I happen to be typing this on a Windows laptop (via ssh to another
> system).  The system drive is called "C:", and I don't know of any
> other name by which I can refer to it.  If I examine its properties
> in Windows Explorer, it appears to have the label "Acer", but that's
> not the "messy string with lots of backslashes" you referred to.
> 
> It strikes me that "C:" is the drive's "official" name in any
> reasonable sense of the word.
> 
> What API are you referring to, what can I expect it to give me as the
> "official" name of my C: drive, and what could I do with that name?

NT has its own low-level scheme for identifying devices/representing
file paths. If you're curious, someone at the Google compound did a
write-up on it some years back:
https://googleprojectzero.blogspot.com/2016/02/the-definitive-guide-on-win32-to-nt.html

For most practical purposes, users and user-level application software
pretty much never see this or have to think about it - but it *is*
there, and it does cause strange corner-case behavior sometimes. (I'm
pretty sure the underlying reason why cmd.exe sometimes cannot access
network shares mapped to a conventional drive letter has to do with
this, f'rinstance.)