동기화루트디렉토리

mongodb-realm 폴더의 위치를 표시하는 루트 폴더를 구성합니다. 이 폴더에는 Realm Mobile 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
)}"

Return

사용된 빌더 인스턴스.

매개변수

루트디렉토리

mongodb-realm 디렉토리가 생성될 디렉토리입니다.