FileObserver
abstract class FileObserver
kotlin.Any | |
↳ | android.os.FileObserver |
Monitors files (using inotify) to fire an event after files are accessed or changed by any process on the device (including this one). FileObserver is an abstract class; subclasses must implement the event handler onEvent(int,java.lang.String)
.
Each FileObserver instance can monitor multiple files or directories. If a directory is monitored, events will be triggered for all files and subdirectories inside the monitored directory.
An event mask is used to specify which changes or actions to report. Event type constants are used to describe the possible changes in the event mask as well as what actually happened in event callbacks.
Warning: If a FileObserver is garbage collected, it will stop sending events. To ensure you keep receiving events, you must keep a reference to the FileObserver instance from some other live object.
Summary
Constants | |
---|---|
static Int |
Event type: Data was read from a file |
static Int |
Event mask: All valid event types, combined |
static Int |
Event type: Metadata (permissions, owner, timestamp) was changed explicitly |
static Int |
Event type: Someone had a file or directory open read-only, and closed it |
static Int |
Event type: Someone had a file or directory open for writing, and closed it |
static Int |
Event type: A new file or subdirectory was created under the monitored directory |
static Int |
Event type: A file was deleted from the monitored directory |
static Int |
Event type: The monitored file or directory was deleted; monitoring effectively stops |
static Int |
Event type: Data was written to a file |
static Int |
Event type: A file or subdirectory was moved from the monitored directory |
static Int |
Event type: A file or subdirectory was moved to the monitored directory |
static Int |
Event type: The monitored file or directory was moved; monitoring continues |
static Int |
Event type: A file or directory was opened |
Public constructors | |
---|---|
FileObserver(path: String!) Equivalent to FileObserver(path, FileObserver.ALL_EVENTS). |
|
FileObserver(file: File) Equivalent to FileObserver(file, FileObserver.ALL_EVENTS). |
|
FileObserver(files: MutableList<File!>) Equivalent to FileObserver(paths, FileObserver.ALL_EVENTS). |
|
FileObserver(path: String!, mask: Int) Create a new file observer for a certain file or directory. |
|
FileObserver(file: File, mask: Int) Create a new file observer for a certain file or directory. |
|
FileObserver(files: MutableList<File!>, mask: Int) Version of |
Public methods | |
---|---|
abstract Unit |
The event handler, which must be implemented by subclasses. |
open Unit |
Start watching for events. |
open Unit |
Stop watching for events. |
Protected methods | |
---|---|
open Unit |
finalize() |
Constants
ALL_EVENTS
static val ALL_EVENTS: Int
Event mask: All valid event types, combined
Value is either 0
or a combination of android.os.FileObserver#ACCESS
, android.os.FileObserver#MODIFY
, android.os.FileObserver#ATTRIB
, android.os.FileObserver#CLOSE_WRITE
, android.os.FileObserver#CLOSE_NOWRITE
, android.os.FileObserver#OPEN
, android.os.FileObserver#MOVED_FROM
, android.os.FileObserver#MOVED_TO
, android.os.FileObserver#CREATE
, android.os.FileObserver#DELETE
, android.os.FileObserver#DELETE_SELF
, and android.os.FileObserver#MOVE_SELF
Value: 4095
ATTRIB
static val ATTRIB: Int
Event type: Metadata (permissions, owner, timestamp) was changed explicitly
Value: 4
CLOSE_NOWRITE
static val CLOSE_NOWRITE: Int
Event type: Someone had a file or directory open read-only, and closed it
Value: 16
CLOSE_WRITE
static val CLOSE_WRITE: Int
Event type: Someone had a file or directory open for writing, and closed it
Value: 8
CREATE
static val CREATE: Int
Event type: A new file or subdirectory was created under the monitored directory
Value: 256
DELETE
static val DELETE: Int
Event type: A file was deleted from the monitored directory
Value: 512
DELETE_SELF
static val DELETE_SELF: Int
Event type: The monitored file or directory was deleted; monitoring effectively stops
Value: 1024
MOVED_FROM
static val MOVED_FROM: Int
Event type: A file or subdirectory was moved from the monitored directory
Value: 64
MOVED_TO
static val MOVED_TO: Int
Event type: A file or subdirectory was moved to the monitored directory
Value: 128
MOVE_SELF
static val MOVE_SELF: Int
Event type: The monitored file or directory was moved; monitoring continues
Value: 2048
Public constructors
FileObserver
FileObserver(path: String!)
Deprecated: use FileObserver(java.io.File)
instead.
Equivalent to FileObserver(path, FileObserver.ALL_EVENTS).
FileObserver
FileObserver(file: File)
Equivalent to FileObserver(file, FileObserver.ALL_EVENTS).
Parameters | |
---|---|
file |
File: This value cannot be null . |
FileObserver
FileObserver(files: MutableList<File!>)
Equivalent to FileObserver(paths, FileObserver.ALL_EVENTS).
Parameters | |
---|---|
files |
MutableList<File!>: The files or directories to monitor This value cannot be null . |
FileObserver
FileObserver(
path: String!,
mask: Int)
Deprecated: use FileObserver(java.io.File,int)
instead.
Create a new file observer for a certain file or directory. Monitoring does not start on creation! You must call startWatching()
before you will receive events.
Parameters | |
---|---|
path |
String!: The file or directory to monitor |
mask |
Int: The event or events (added together) to watch for Value is either 0 or a combination of android.os.FileObserver#ACCESS , android.os.FileObserver#MODIFY , android.os.FileObserver#ATTRIB , android.os.FileObserver#CLOSE_WRITE , android.os.FileObserver#CLOSE_NOWRITE , android.os.FileObserver#OPEN , android.os.FileObserver#MOVED_FROM , android.os.FileObserver#MOVED_TO , android.os.FileObserver#CREATE , android.os.FileObserver#DELETE , android.os.FileObserver#DELETE_SELF , and android.os.FileObserver#MOVE_SELF |
FileObserver
FileObserver(
file: File,
mask: Int)
Create a new file observer for a certain file or directory. Monitoring does not start on creation! You must call startWatching()
before you will receive events.
Parameters | |
---|---|
file |
File: The file or directory to monitor This value cannot be null . |
mask |
Int: The event or events (added together) to watch for Value is either 0 or a combination of android.os.FileObserver#ACCESS , android.os.FileObserver#MODIFY , android.os.FileObserver#ATTRIB , android.os.FileObserver#CLOSE_WRITE , android.os.FileObserver#CLOSE_NOWRITE , android.os.FileObserver#OPEN , android.os.FileObserver#MOVED_FROM , android.os.FileObserver#MOVED_TO , android.os.FileObserver#CREATE , android.os.FileObserver#DELETE , android.os.FileObserver#DELETE_SELF , and android.os.FileObserver#MOVE_SELF |
FileObserver
FileObserver(
files: MutableList<File!>,
mask: Int)
Version of FileObserver(java.io.File,int)
that allows callers to monitor multiple files or directories.
Parameters | |
---|---|
files |
MutableList<File!>: The files or directories to monitor This value cannot be null . |
mask |
Int: The event or events (added together) to watch for Value is either 0 or a combination of android.os.FileObserver#ACCESS , android.os.FileObserver#MODIFY , android.os.FileObserver#ATTRIB , android.os.FileObserver#CLOSE_WRITE , android.os.FileObserver#CLOSE_NOWRITE , android.os.FileObserver#OPEN , android.os.FileObserver#MOVED_FROM , android.os.FileObserver#MOVED_TO , android.os.FileObserver#CREATE , android.os.FileObserver#DELETE , android.os.FileObserver#DELETE_SELF , and android.os.FileObserver#MOVE_SELF |
Public methods
onEvent
abstract fun onEvent(
event: Int,
path: String?
): Unit
The event handler, which must be implemented by subclasses.
This method is invoked on a special FileObserver thread. It runs independently of any threads, so take care to use appropriate synchronization! Consider using Handler#post(Runnable)
to shift event handling work to the main thread to avoid concurrency problems.
Event handlers must not throw exceptions.
Parameters | |
---|---|
event |
Int: The type of event which happened |
path |
String?: The path, relative to the main monitored file or directory, of the file or directory which triggered the event. This value can be null for certain events, such as MOVE_SELF . |
startWatching
open fun startWatching(): Unit
Start watching for events. The monitored file or directory must exist at this time, or else no events will be reported (even if it appears later). If monitoring is already started, this call has no effect.
stopWatching
open fun stopWatching(): Unit
Stop watching for events. Some events may be in process, so events may continue to be reported even after this method completes. If monitoring is already stopped, this call has no effect.
Protected methods
finalize
protected open fun finalize(): Unit
Exceptions | |
---|---|
java.lang.Throwable |
the Exception raised by this method |