diff --git a/docs/xml/Java.Nio.FileNio/FileStore.xml b/docs/xml/Java.Nio.FileNio/FileStore.xml
index 8e8bedb24..e8c0f371c 100644
--- a/docs/xml/Java.Nio.FileNio/FileStore.xml
+++ b/docs/xml/Java.Nio.FileNio/FileStore.xml
@@ -296,9 +296,15 @@
System.Boolean
- To be added.
- To be added.
+ Gets whether this file store is read-only.
+ true if and only if this file store is read-only; otherwise, false.
+ A file store is read-only when it does not support write operations or other changes to files. Attempts to create a file or open an existing file for writing cause an IOException.
+
+
+ Java documentation for java.nio.file.FileStore.isReadOnly().
+
+
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
@@ -581,11 +587,17 @@
System.Int64
- To be added.
- To be added.
+ Gets the size of this file store in bytes.
+ The size of this file store in bytes, or long.MaxValue if its size exceeds that value.
+
+
+ Java documentation for java.nio.file.FileStore.getTotalSpace().
+
+
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
+ If an I/O error occurs.
@@ -657,11 +669,18 @@
System.Int64
- To be added.
- To be added.
+ Gets the number of unallocated bytes in this file store.
+ The number of unallocated bytes, or long.MaxValue if the number exceeds that value.
+ This value is a hint, not a guarantee; it is most accurate immediately after retrieval and may be affected by external I/O operations.
+
+
+ Java documentation for java.nio.file.FileStore.getUnallocatedSpace().
+
+
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
+ If an I/O error occurs.
@@ -688,11 +707,18 @@
System.Int64
- To be added.
- To be added.
+ Gets the number of bytes available to this Java virtual machine on this file store.
+ The number of available bytes, or long.MaxValue if the number exceeds that value.
+ This value is a hint, not a guarantee; it is most accurate immediately after retrieval and may be affected by external I/O operations.
+
+
+ Java documentation for java.nio.file.FileStore.getUsableSpace().
+
+
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
+ If an I/O error occurs.