Recorder

A recorder for the recording file system.

Methods
void log(int op, String fileName, byte[] data, long x)
Record the method.
void log(int op, String fileName, byte[] data, long x)
Record the method.
Parameters:
op - the operation
fileName - the file name or file name list
data - the data or null
x - the value or 0

Fields
static int CREATE_NEW_FILE = 2
static int CREATE_TEMP_FILE = 3
static int DELETE = 4
static int OPEN_OUTPUT_STREAM = 5
static int RENAME = 6
static int TRUNCATE = 7
static int WRITE = 8

CREATE_NEW_FILE = 2

Create a new file.

CREATE_TEMP_FILE = 3

Create a temporary file.

DELETE = 4

Delete a file.

OPEN_OUTPUT_STREAM = 5

Open a file output stream.

RENAME = 6

Rename a file. The file name contains the source and the target file separated with a colon.

TRUNCATE = 7

Truncate the file.

WRITE = 8

Write to the file.