Windows 上是否有特殊文件夹列表,如命名管道 (\\.\pipe\)

Is there a list of special folders like named pipe (\\.\pipe\) on Windows

我在 Google 上搜索了命名管道,发现 Windows 使用文件夹 \.\pipe\ 作为命名管道。有谁知道是否有此类特殊文件夹的列表?这些文件夹的用途是什么?

这些不是文件夹,而是 "win32 device namespace" 中的名称,有关详细信息,请参阅 Naming Files, Paths, and Namespaces

其他保留名称包括:

来自 CreateFile():

\.\PhysicalDrive<#> 

\.\<DriveLetter>:

\.\Changer<#>

\.\TAPE<#> 

\.\COM<#>

CONIN$

CONOUT$

来自CreateMailSlot()

\.\mailslot\<name>

来自CreateNamedPipe()

\.\pipe\<name>