Top Description Methods
org.jruby.util

public Interface FileResource

Known Direct Subinterfaces
org.jruby.util.DummyResourceStat.FileResourceExt
Known Direct Implementers
org.jruby.util.JarResource, org.jruby.util.NullDeviceResource, org.jruby.util.RegularFileResource, org.jruby.util.URLResource, org.jruby.util.EmptyFileResource
Imports
java.io.IOException, .InputStream, jnr.posix.FileStat, .POSIX, org.jruby.util.io.ModeFlags, java.nio.channels.Channel

This is a shared interface for files loaded as java.io.File and java.util.zip.ZipEntry.

Method Summary

Modifier and TypeMethod and Description
public String
public boolean
public String
public boolean
public boolean
public int
public boolean
public default JRubyFile
hackyGetJRubyFile()
Deprecated

public default InputStream

Returns:

just opened InputStream
inputStream
()
Deprecated Opens a new input stream to read the contents of a resource and returns it.

public boolean
public boolean
public default boolean

Returns:

is this a NUL device?
isNull
()

public long
public long
public String[]
list()

public FileStat
public default Channel

Returns:

channel
openChannel
(ModeFlags flags, int perm)
Deprecated use openChannel(int, int) instead

public Channel
openChannel(int flags, int perm)

public InputStream

Returns:

InputStream
openInputStream
()

Opens a new input stream to read the contents of a resource and returns it.

public String
path()

public FileStat
stat()

public <T> T

Returns:

backend if supported
unwrap
(Class<T> type)

Unwrap the resource backend (replacement for hackyGetJRubyFile()).

public static FileResource
wrap(POSIX posix, JRubyFile file)

Method Detail

absolutePathback to summary
public String absolutePath()
canExecuteback to summary
public boolean canExecute()
canonicalPathback to summary
public String canonicalPath()
canReadback to summary
public boolean canRead()
canWriteback to summary
public boolean canWrite()
errnoback to summary
public int errno()
existsback to summary
public boolean exists()
hackyGetJRubyFileback to summary
public default JRubyFile hackyGetJRubyFile()

Deprecated

Annotations
@Deprecated
inputStreamback to summary
public default InputStream inputStream() throws ResourceException

Deprecated

Opens a new input stream to read the contents of a resource and returns it. Note that implementations may be allocating native memory for the stream, so callers need to close this when they are done with it. users of this method should follow the pattern: close the stream where you open it.

Returns:InputStream

just opened InputStream

Exceptions
ResourceException:
is the file does not exists or if the resource is a directory
isDirectoryback to summary
public boolean isDirectory()
isFileback to summary
public boolean isFile()
isNullback to summary
public default boolean isNull()
Returns:boolean

is this a NUL device?

lastModifiedback to summary
public long lastModified()
lengthback to summary
public long length()
listback to summary
public String[] list()
See Also
java.io.File#list()
lstatback to summary
public FileStat lstat()
openChannelback to summary
public default Channel openChannel(ModeFlags flags, int perm) throws ResourceException

Deprecated

use openChannel(int, int) instead

Returns:Channel

channel

openChannelback to summary
public Channel openChannel(int flags, int perm) throws IOException
openInputStreamback to summary
public InputStream openInputStream() throws IOException

Opens a new input stream to read the contents of a resource and returns it. Note that implementations may be allocating native memory for the stream, so callers need to close this when they are done with it. users of this method should follow the pattern: close the stream where you open it.

Returns:InputStream

InputStream

pathback to summary
public String path()
statback to summary
public FileStat stat()
unwrapback to summary
public <T> T unwrap(Class<T> type) throws UnsupportedOperationException

Unwrap the resource backend (replacement for hackyGetJRubyFile()).

Returns:T

backend if supported

wrapback to summary
public static FileResource wrap(POSIX posix, JRubyFile file)