ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Core.Data Namespace / MobileGeodatabaseConnectionPath Class
Members Example Version

MobileGeodatabaseConnectionPath Class
Represents the physical path to a mobile geodatabase that ends with the .geodatabase extension.
Syntax
public sealed class MobileGeodatabaseConnectionPath : Connector 
Example
Creating a Mobile Geodatabase
public void CreateMobileGeodatabase()
{
  // Create a MobileGeodatabaseConnectionPath with the name of the mobile geodatabase you wish to create
  MobileGeodatabaseConnectionPath mobileGeodatabaseConnectionPath = new MobileGeodatabaseConnectionPath(new Uri(@"C:\Path-To-Mobile-Geodatabase\YourName.geodatabase"));

  // Create and use the mobile geodatabase
  using (Geodatabase geodatabase = SchemaBuilder.CreateGeodatabase(mobileGeodatabaseConnectionPath))
  {
    // Create additional schema here
  }
}
Deleting a Mobile Geodatabase
public void DeleteMobileGeodatabase()
{
  // Create a MobileGeodatabaseConnectionPath with the name of the mobile geodatabase you wish to delete
  MobileGeodatabaseConnectionPath mobileGeodatabaseConnectionPath =
    new MobileGeodatabaseConnectionPath(new Uri(@"C:\Path-To-Mobile-Geodatabase\YourName.geodatabase"));

  // Delete the mobile geodatabase
  SchemaBuilder.DeleteGeodatabase(mobileGeodatabaseConnectionPath);
}
Inheritance Hierarchy

System.Object
   ArcGIS.Core.Data.Connector
      ArcGIS.Core.Data.MobileGeodatabaseConnectionPath

Requirements

Target Platforms: Windows 11, Windows 10

ArcGIS Pro version: 3 or higher.
See Also