Table of Contents

Struct GameFolderLocator.SteamLibraryGameInfo

Namespace
ValveResourceFormat.IO
Assembly
ValveResourceFormat.dll

Represents an installed Steam app (game, tool, application, etc.)

public record struct GameFolderLocator.SteamLibraryGameInfo : IEquatable<GameFolderLocator.SteamLibraryGameInfo>

Implements

Inherited Members

Constructors

SteamLibraryGameInfo(int, string, string, string)

Represents an installed Steam app (game, tool, application, etc.)

public SteamLibraryGameInfo(int AppID, string AppName, string SteamPath, string GamePath)

Parameters

AppID int

AppID of the app.

AppName string

Name of the app.

SteamPath string

Path to the root of the Steam library where this app is installed. ("C:/Steam/steamapps")

GamePath string

Full path to the installation directory of the app. ("C:/Steam/steamapps/common/dota 2 beta")

Properties

AppID

AppID of the app.

public int AppID { readonly get; set; }

Property Value

int

AppName

Name of the app.

public string AppName { readonly get; set; }

Property Value

string

GamePath

Full path to the installation directory of the app. ("C:/Steam/steamapps/common/dota 2 beta")

public string GamePath { readonly get; set; }

Property Value

string

SteamPath

Path to the root of the Steam library where this app is installed. ("C:/Steam/steamapps")

public string SteamPath { readonly get; set; }

Property Value

string