You are here: Configuration > File Configuration > Blob Path

Blob Path

With this setting you can specify in which directory the Blob-files are stored. The db4o-Blobs are stored outside the database file as regular files. With this settings you can set where this directory is. The default is the 'blob'-directory.

IEmbeddedConfiguration configuration = Db4oEmbedded.NewConfiguration();
configuration.File.BlobPath = "myBlobDirectory";
FileConfiguration.cs: Configure the blob-path
Dim configuration As IEmbeddedConfiguration = Db4oEmbedded.NewConfiguration()
configuration.File.BlobPath = "myBlobDirectory"
FileConfiguration.vb: Configure the blob-path