INTERFACE

DirectoryInfo

Describes a directory in a filesystem, regardless of whether the filesystem is virtualized or realized (OS).

  • interface DirectoryInfo {
  • # The last modified time of the directory, in UTC.
  • lastModifiedTime: DateTime!
  • # The creation time of the directory, in UTC.
  • createdTime: DateTime!
  • # The name of the directory.
  • name: String!
  • # The path of the file on the realized operating system.
  • osPath: OSDirectoryPath!
  • }