目录
将路径设置为包含 Realm 文件的目录。如果该目录不存在,则会创建该目录和所有中间目录。
如果未设立,该域将存储在平台的默认应用存储位置:
// For Android the default directory is obtained using
Context.getFilesDir()
// For JVM platforms the default directory is obtained using
System.getProperty("user.dir")
// For macOS the default directory is obtained using
platform.Foundation.NSFileManager.defaultManager.currentDirectoryPath
// For iOS the default directory is obtained using
NSFileManager.defaultManager.URLForDirectory(
NSDocumentDirectory,
NSUserDomainMask,
null,
true,
null
)
内容已复制到剪贴板
参数
目录 路径
上述定义的存储位置的规范绝对路径或相对路径 (“./”)。