Liking cljdoc? Tell your friends :D

jdk.nio.file.FileStore

Storage for files. A FileStore represents a storage pool, device, partition, volume, concrete file system or other implementation specific means of file storage. The FileStore for where a file is stored is obtained by invoking the getFileStore method, or all file stores can be enumerated by invoking the getFileStores method.

In addition to the methods defined by this class, a file store may support one or more FileStoreAttributeView classes that provide a read-only or updatable view of a set of file store attributes.

Storage for files. A FileStore represents a storage pool, device,
partition, volume, concrete file system or other implementation specific means
of file storage. The FileStore for where a file is stored is obtained
by invoking the getFileStore method, or all file
stores can be enumerated by invoking the getFileStores method.

 In addition to the methods defined by this class, a file store may support
one or more FileStoreAttributeView classes
that provide a read-only or updatable view of a set of file store attributes.
raw docstring

get-attributeclj

(get-attribute this attribute)

Reads the value of a file store attribute.

The attribute parameter identifies the attribute to be read and takes the form:

view-name:attribute-name

where the character ':' stands for itself.

view-name is the name of a AttributeView that identifies a set of file attributes. attribute-name is the name of the attribute.

Usage Example: Suppose we want to know if ZFS compression is enabled (assuming the "zfs" view is supported):

boolean compression = (Boolean)fs.getAttribute("zfs:compression");

attribute - the attribute to read - java.lang.String

returns: the attribute value; null may be a valid valid for some attributes - java.lang.Object

throws: java.lang.UnsupportedOperationException - if the attribute view is not available or it does not support reading the attribute

Reads the value of a file store attribute.

  The attribute parameter identifies the attribute to be read
 and takes the form:

 view-name:attribute-name

 where the character ':' stands for itself.

  view-name is the name of
 a AttributeView that identifies a set of file attributes.
 attribute-name is the name of the attribute.

  Usage Example:
 Suppose we want to know if ZFS compression is enabled (assuming the "zfs"
 view is supported):


    boolean compression = (Boolean)fs.getAttribute("zfs:compression");

attribute - the attribute to read - `java.lang.String`

returns: the attribute value; null may be a valid valid for some
          attributes - `java.lang.Object`

throws: java.lang.UnsupportedOperationException - if the attribute view is not available or it does not support reading the attribute
raw docstring

get-file-store-attribute-viewclj

(get-file-store-attribute-view this type)

Returns a FileStoreAttributeView of the given type.

This method is intended to be used where the file store attribute view defines type-safe methods to read or update the file store attributes. The type parameter is the type of the attribute view required and the method returns an instance of that type if supported.

type - the Class object corresponding to the attribute view - java.lang.Class

returns: a file store attribute view of the specified type or null if the attribute view is not available - <V extends java.nio.file.attribute.FileStoreAttributeView> V

Returns a FileStoreAttributeView of the given type.

  This method is intended to be used where the file store attribute
 view defines type-safe methods to read or update the file store attributes.
 The type parameter is the type of the attribute view required and
 the method returns an instance of that type if supported.

type - the Class object corresponding to the attribute view - `java.lang.Class`

returns: a file store attribute view of the specified type or
          null if the attribute view is not available - `<V extends java.nio.file.attribute.FileStoreAttributeView> V`
raw docstring

get-total-spaceclj

(get-total-space this)

Returns the size, in bytes, of the file store.

returns: the size of the file store, in bytes - long

throws: java.io.IOException - if an I/O error occurs

Returns the size, in bytes, of the file store.

returns: the size of the file store, in bytes - `long`

throws: java.io.IOException - if an I/O error occurs
raw docstring

get-unallocated-spaceclj

(get-unallocated-space this)

Returns the number of unallocated bytes in the file store.

The returned number of unallocated bytes is a hint, but not a guarantee, that it is possible to use most or any of these bytes. The number of unallocated bytes is most likely to be accurate immediately after the space attributes are obtained. It is likely to be made inaccurate by any external I/O operations including those made on the system outside of this virtual machine.

returns: the number of unallocated bytes - long

throws: java.io.IOException - if an I/O error occurs

Returns the number of unallocated bytes in the file store.

  The returned number of unallocated bytes is a hint, but not a
 guarantee, that it is possible to use most or any of these bytes.  The
 number of unallocated bytes is most likely to be accurate immediately
 after the space attributes are obtained. It is likely to be
 made inaccurate by any external I/O operations including those made on
 the system outside of this virtual machine.

returns: the number of unallocated bytes - `long`

throws: java.io.IOException - if an I/O error occurs
raw docstring

get-usable-spaceclj

(get-usable-space this)

Returns the number of bytes available to this Java virtual machine on the file store.

The returned number of available bytes is a hint, but not a guarantee, that it is possible to use most or any of these bytes. The number of usable bytes is most likely to be accurate immediately after the space attributes are obtained. It is likely to be made inaccurate by any external I/O operations including those made on the system outside of this Java virtual machine.

returns: the number of bytes available - long

throws: java.io.IOException - if an I/O error occurs

Returns the number of bytes available to this Java virtual machine on the
 file store.

  The returned number of available bytes is a hint, but not a
 guarantee, that it is possible to use most or any of these bytes.  The
 number of usable bytes is most likely to be accurate immediately
 after the space attributes are obtained. It is likely to be made inaccurate
 by any external I/O operations including those made on the system outside
 of this Java virtual machine.

returns: the number of bytes available - `long`

throws: java.io.IOException - if an I/O error occurs
raw docstring

nameclj

(name this)

Returns the name of this file store. The format of the name is highly implementation specific. It will typically be the name of the storage pool or volume.

The string returned by this method may differ from the string returned by the toString method.

returns: the name of this file store - java.lang.String

Returns the name of this file store. The format of the name is highly
 implementation specific. It will typically be the name of the storage
 pool or volume.

  The string returned by this method may differ from the string
 returned by the toString method.

returns: the name of this file store - `java.lang.String`
raw docstring

read-only?clj

(read-only? this)

Tells whether this file store is read-only. A file store is read-only if it does not support write operations or other changes to files. Any attempt to create a file, open an existing file for writing etc. causes an IOException to be thrown.

returns: true if, and only if, this file store is read-only - boolean

Tells whether this file store is read-only. A file store is read-only if
 it does not support write operations or other changes to files. Any
 attempt to create a file, open an existing file for writing etc. causes
 an IOException to be thrown.

returns: true if, and only if, this file store is read-only - `boolean`
raw docstring

supports-file-attribute-viewclj

(supports-file-attribute-view this type)

Tells whether or not this file store supports the file attributes identified by the given file attribute view.

Invoking this method to test if the file store supports BasicFileAttributeView will always return true. In the case of the default provider, this method cannot guarantee to give the correct result when the file store is not a local storage device. The reasons for this are implementation specific and therefore unspecified.

type - the file attribute view type - java.lang.Class

returns: true if, and only if, the file attribute view is supported - boolean

Tells whether or not this file store supports the file attributes
 identified by the given file attribute view.

  Invoking this method to test if the file store supports BasicFileAttributeView will always return true. In the case of
 the default provider, this method cannot guarantee to give the correct
 result when the file store is not a local storage device. The reasons for
 this are implementation specific and therefore unspecified.

type - the file attribute view type - `java.lang.Class`

returns: true if, and only if, the file attribute view is
          supported - `boolean`
raw docstring

typeclj

(type this)

Returns the type of this file store. The format of the string returned by this method is highly implementation specific. It may indicate, for example, the format used or if the file store is local or remote.

returns: a string representing the type of this file store - java.lang.String

Returns the type of this file store. The format of the string
 returned by this method is highly implementation specific. It may
 indicate, for example, the format used or if the file store is local
 or remote.

returns: a string representing the type of this file store - `java.lang.String`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close