OBJECT

_OSDirectoryInfo__DirectoryInfo

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

  • type _OSDirectoryInfo__DirectoryInfo implements OSDirectoryInfo, DirectoryInfo {
  • # 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 or not this directory is hidden
  • isHidden: Boolean!
  • }