We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5c1c4d commit 793085dCopy full SHA for 793085d
objectbox-java/src/main/java/io/objectbox/BoxStoreBuilder.java
@@ -274,7 +274,12 @@ private static File getAndroidFilesDir(Object context) {
274
return filesDir;
275
}
276
277
- // TODO Docs, validation.
+ /**
278
+ * Specify
279
+ * <a href="https://en.wikipedia.org/wiki/File_system_permissions#Numeric_notation">unix-style file permissions</a>
280
+ * to use for the database directory and files.
281
+ * E.g. for {@code rw-rw-rw-} (owner, group, other) pass the octal code {@code 666}.
282
+ */
283
public BoxStoreBuilder fileMode(long mode) {
284
this.fileMode = mode;
285
return this;
0 commit comments