show/hide this revision's text 4 added 43 characters in body

Usually the problem is with the DefaultFile property being null. The default data file is where the data files are stored on the instance of SQL Server unless otherwise specified in the FileName property. If no other default location has been specified the property will return an empty string.

So, this property brings back nothing (empty string) if you didn't set the default location.

A workaround is to check the DefaultFile property, if it returns an empty string use SMO to get the master database then use the Database.PrimaryFilePath property to retrieve the Default Data File Location (since it hasn't changed)

Since you say the problem is with your PrimaryFilePath, are you sure :

  • Confirm that your connection is open are
  • Confirm that other properties are available?
show/hide this revision's text 3 added 199 characters in body

Usually the problem is with the DefaultFile property being null. The default data file is where the data files are stored on the instance of SQL Server unless otherwise specified in the FileName property. If no other default location has been specified the property will return an empty string.

So, this property brings back nothing (empty string) if you didn't set the default location.

A workaround is to check the DefaultFile property, if it returns an empty string use SMO to get the master database then use the Database.PrimaryFilePath property to retrieve the Default Data File Location (since it hasn't changed)

Since you say the problem is with your PrimaryFilePath, are you sure your connection is open are other properties available?

show/hide this revision's text 2 added 418 characters in body

You need to drill down a little more

The default data file is where the data files are stored on the instance of SQL Server unless otherwise specified in the FileName property. Try using If no other default location has been specified the following

Path.GetDirectoryName(backupDatabase.FileGroups[0].Files[0].FileName);
property will return an empty string.

So, this property brings back nothing (empty string) if you didn't set the default location.

A workaround is to check the DefaultFile property, if it returns an empty string use SMO to get the master database then use the Database.PrimaryFilePath property to retrieve the Default Data File Location (since it hasn't changed)

show/hide this revision's text 1