同步 目录

配置标记mongodb-realm文件夹位置的根文件夹。 此文件夹包含使用 Device Sync 在设备和 Atlas 之间同步数据时使用的所有文件和 Realm。

默认根目录与平台相关:

// For Android the default directory is obtained using
val dir = "${Context.getFilesDir()}"

// For JVM platforms the default directory is obtained using
val dir = "${System.getProperty("user.dir")}"

// For macOS the default directory is obtained using
val dir = "${NSFileManager.defaultManager.currentDirectoryPath}"

// For iOS the default directory is obtained using
val dir = "${NSFileManager.defaultManager.URLForDirectory(
NSDocumentDirectory,
NSUserDomainMask,
null,
true,
null
)}"

返回

使用的 Builder 实例。

参数

根 目录

将在其中创建mongodb-realm目录的目录。