INTERFACE
OSDirectoryContents
Describes the contents of a directory in the realized, OS-dependent file system.
- interface OSDirectoryContents {
- # The root directory.
- : OSDirectoryInfo
- # The files contained in this directory.
- : [OSFileInfo!]!
- # The child directories contained in this directory.
- : [OSDirectoryInfo!]!
- # The number of child directories contained in this directory.
- : Int!
- # The number of child files contained in this directory.
- : Int!
- # Fetches installables for this directory, searching all top level files and
- # directories,not including the current directory itself.
- #
- # Arguments
- # platformId: The platform to look up installables for.
- (: PlatformId!): [Installable!]!
- }