INTERFACE

OSDirectoryInfo

Describes a directory in the realized, OS-dependent file system.

  • interface OSDirectoryInfo {
  • # The last modified time of the directory, in UTC.
  • lastModifiedTime: DateTime!
  • # The creation time of the directory, in UTC.
  • createdTime: DateTime!
  • # The path of the file on the realized operating system.
  • osPath: OSDirectoryPath!
  • # The path of this directory
  • path: OSDirectoryPath!
  • # The name of the directory.
  • name: String!
  • # Whether or not this directory is a drive root.
  • isDrive: Boolean!
  • # Whether nor not this directory is hidden.
  • isHidden: Boolean!
  • }