A C D F G I L M N R S W 

A

available() - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next invocation of a method for this input stream.

C

checkAccess(Path, AccessMode...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Check access modes for a path on this filesystem
close() - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Closes this stream and releases any system resources associated with it.
close() - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Closes this input stream and releases any system resources associated with the stream.
close() - Method in class com.github.fge.fs.dropbox.misc.DropBoxOutputStream
 
com.github.fge.fs.dropbox.attr - package com.github.fge.fs.dropbox.attr
 
com.github.fge.fs.dropbox.driver - package com.github.fge.fs.dropbox.driver
 
com.github.fge.fs.dropbox.filestore - package com.github.fge.fs.dropbox.filestore
 
com.github.fge.fs.dropbox.misc - package com.github.fge.fs.dropbox.misc
 
com.github.fge.fs.dropbox.provider - package com.github.fge.fs.dropbox.provider
 
copy(Path, Path, CopyOption...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Copy a file, or empty directory, from one path to another on this filesystem
createDirectory(Path, FileAttribute<?>...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Create a new directory from a path on this filesystem
createDriver(URI, Map<String, ?>) - Method in class com.github.fge.fs.dropbox.provider.DropBoxFileSystemRepository
 

D

delete(Path) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Delete a file, or empty directory, matching a path on this filesystem
DropBoxFileAttributes - Class in com.github.fge.fs.dropbox.attr
BasicFileAttributes implementation for DropBox
DropBoxFileAttributes(DbxEntry) - Constructor for class com.github.fge.fs.dropbox.attr.DropBoxFileAttributes
 
DropBoxFileStore - Class in com.github.fge.fs.dropbox.filestore
A simple DropBox FileStore
DropBoxFileStore(DbxClient) - Constructor for class com.github.fge.fs.dropbox.filestore.DropBoxFileStore
Constructor
DropBoxFileSystemDriver - Class in com.github.fge.fs.dropbox.driver
 
DropBoxFileSystemDriver(URI, DbxClient) - Constructor for class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
 
DropBoxFileSystemProvider - Class in com.github.fge.fs.dropbox.provider
 
DropBoxFileSystemProvider(FileSystemRepository) - Constructor for class com.github.fge.fs.dropbox.provider.DropBoxFileSystemProvider
 
DropBoxFileSystemRepository - Class in com.github.fge.fs.dropbox.provider
 
DropBoxFileSystemRepository() - Constructor for class com.github.fge.fs.dropbox.provider.DropBoxFileSystemRepository
 
DropBoxInputStream - Class in com.github.fge.fs.dropbox.misc
Wrapper over DbxClient.Downloader extending InputStream
DropBoxInputStream(DbxClient.Downloader) - Constructor for class com.github.fge.fs.dropbox.misc.DropBoxInputStream
 
DropBoxIOException - Exception in com.github.fge.fs.dropbox.misc
Class used as a wrapper over the DropBox API's unchecked exceptions when an IOException is needed
DropBoxIOException() - Constructor for exception com.github.fge.fs.dropbox.misc.DropBoxIOException
Constructs an IOException with null as its error detail message.
DropBoxIOException(String) - Constructor for exception com.github.fge.fs.dropbox.misc.DropBoxIOException
Constructs an IOException with the specified detail message.
DropBoxIOException(String, Throwable) - Constructor for exception com.github.fge.fs.dropbox.misc.DropBoxIOException
Constructs an IOException with the specified detail message and cause.
DropBoxIOException(Throwable) - Constructor for exception com.github.fge.fs.dropbox.misc.DropBoxIOException
Constructs an IOException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
DropBoxOutputStream - Class in com.github.fge.fs.dropbox.misc
Wrapper over DbxClient.Uploader extending OutputStream
DropBoxOutputStream(DbxClient.Uploader) - Constructor for class com.github.fge.fs.dropbox.misc.DropBoxOutputStream
 

F

flush() - Method in class com.github.fge.fs.dropbox.misc.DropBoxOutputStream
Flushes this output stream and forces any buffered output bytes to be written out.

G

getFileAttributeView(Path, Class<V>, LinkOption...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Read an attribute view for a given path on this filesystem
getTotalSpace() - Method in class com.github.fge.fs.dropbox.filestore.DropBoxFileStore
Returns the size, in bytes, of the file store.
getUnallocatedSpace() - Method in class com.github.fge.fs.dropbox.filestore.DropBoxFileStore
Returns the number of unallocated bytes in the file store.
getUsableSpace() - Method in class com.github.fge.fs.dropbox.filestore.DropBoxFileStore
Returns the number of bytes available to this Java virtual machine on the file store.

I

isDirectory() - Method in class com.github.fge.fs.dropbox.attr.DropBoxFileAttributes
Tells whether the file is a directory.
isRegularFile() - Method in class com.github.fge.fs.dropbox.attr.DropBoxFileAttributes
Tells whether the file is a regular file with opaque content.

L

lastModifiedTime() - Method in class com.github.fge.fs.dropbox.attr.DropBoxFileAttributes
Returns the time of last modification.

M

mark(int) - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Marks the current position in this input stream.
markSupported() - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Tests if this input stream supports the mark and reset methods.
move(Path, Path, CopyOption...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Move a file, or empty directory, from one path to another on this filesystem

N

newDirectoryStream(Path, DirectoryStream.Filter<? super Path>) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Create a new directory stream from a path for this filesystem
newInputStream(Path, OpenOption...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Obtain a new InputStream from a path for this filesystem
newOutputStream(Path, OpenOption...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Obtain a new OutputStream from a path for this filesystem

R

read() - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Reads the next byte of data from the input stream.
read(byte[]) - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Reads some number of bytes from the input stream and stores them into the buffer array b.
read(byte[], int, int) - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Reads up to len bytes of data from the input stream into an array of bytes.
readAttributes(Path, Class<A>, LinkOption...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Read attributes from a path on this filesystem
readAttributes(Path, String, LinkOption...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Read a list of attributes from a path on this filesystem
reset() - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Repositions this stream to the position at the time the mark method was last called on this input stream.

S

setAttribute(Path, String, Object, LinkOption...) - Method in class com.github.fge.fs.dropbox.driver.DropBoxFileSystemDriver
Set an attribute for a path on this filesystem
size() - Method in class com.github.fge.fs.dropbox.attr.DropBoxFileAttributes
Returns the size of the file (in bytes).
skip(long) - Method in class com.github.fge.fs.dropbox.misc.DropBoxInputStream
Skips over and discards n bytes of data from this input stream.
supportsFileAttributeView(Class<? extends FileAttributeView>) - Method in class com.github.fge.fs.dropbox.filestore.DropBoxFileStore
Tells whether or not this file store supports the file attributes identified by the given file attribute view.
supportsFileAttributeView(String) - Method in class com.github.fge.fs.dropbox.filestore.DropBoxFileStore
Tells whether or not this file store supports the file attributes identified by the given file attribute view.

W

write(int) - Method in class com.github.fge.fs.dropbox.misc.DropBoxOutputStream
Writes the specified byte to this output stream.
write(byte[]) - Method in class com.github.fge.fs.dropbox.misc.DropBoxOutputStream
Writes b.length bytes from the specified byte array to this output stream.
write(byte[], int, int) - Method in class com.github.fge.fs.dropbox.misc.DropBoxOutputStream
Writes len bytes from the specified byte array starting at offset off to this output stream.
A C D F G I L M N R S W