VmGuestFilesystemFilesInfo

The Files.Info structure describes a file or directory in the guest operating system. Returned by Files.get.


Properties

attributes Required

Attributes of a file.


integer as int64
size Required

The file size in bytes.


type Required

The Files.Type enumerated type defines the valid types of files.
FILE : normal file
DIRECTORY : directory
SYMLINK : symbolic link

Possible values are: FILEDIRECTORYSYMLINK

JSON Example

{
	"attributes": {
		"filesystem_family": "WINDOWS",
		"last_accessed": "string",
		"last_modified": "string"
	},
	"size": 0,
	"type": "FILE"
}

Feedback

Was this page helpful?