posix constant

FileSystemStyle const posix = const _Posix()

Mimics the Unix file system style.

  • This style does not have the notion of drives
  • All file system paths are rooted at /
  • The path separator is /

An example path in this style is /path/to/file.

Implementation

static const FileSystemStyle posix = const _Posix()