ArcGIS Pro 2.9 API Reference Guide
InitialLocation Property
Example 

ArcGIS.Desktop.Catalog Namespace > ItemDialog Class : InitialLocation Property
Gets or sets the initial location to display in the Browse dialog box.
Syntax
public string InitialLocation {get; set;}
Public Property InitialLocation As String
Example
/// Adds a single item to a map
OpenItemDialog addToMapDialog = new OpenItemDialog()
{
  Title = "Add To Map",
  InitialLocation = @"C:\Data\NewYork\Counties\Erie\Streets",
  Filter = ItemFilters.composite_addToMap
};
SaveItemDialog saveLayerFileDialog = new SaveItemDialog()
{
  Title = "Save Layer File",
  InitialLocation = @"C:\Data\ProLayers\Geographic\Streets",
  Filter = ItemFilters.layers_allFileTypes
};
Requirements

Target Platforms: Windows 11, Windows 10, Windows 8.1

See Also

Reference

ItemDialog Class
ItemDialog Members