Java java.nio.file FileStore fields, constructors, methods, implement or subclass

Example usage for Java java.nio.file FileStore fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.nio.file FileStore.

The text is from its open source code.

Method

ObjectgetAttribute(String attribute)
Reads the value of a file store attribute.
VgetFileStoreAttributeView(Class type)
Returns a FileStoreAttributeView of the given type.
longgetTotalSpace()
Returns the size, in bytes, of the file store.
longgetUnallocatedSpace()
Returns the number of unallocated bytes in the file store.
longgetUsableSpace()
Returns the number of bytes available to this Java virtual machine on the file store.
booleanisReadOnly()
Tells whether this file store is read-only.
Stringname()
Returns the name of this file store.
booleansupportsFileAttributeView(Class type)
Tells whether or not this file store supports the file attributes identified by the given file attribute view.
booleansupportsFileAttributeView(String name)
Tells whether or not this file store supports the file attributes identified by the given file attribute view.
StringtoString()
Returns a string representation of the object.
Stringtype()
Returns the type of this file store.