enum io.FileKind
Overview
This enumeration contains all possible values for the underlying type
of io.File
or io.FileStream
object. More…
enum FileKind { Unknown, Disk, Serial, Pipe, };
Detailed Documentation
This enumeration contains all possible values for the underlying type
of io.File
or io.FileStream
object.
Enum Values
Unknown
Denotes undefined (or generic) file stream.
Disk
The file stream represents a disk file.
Serial
The file stream represents a serial port.
Pipe
The file stream represents a pipe (named/anonymous) or a socket.