Packageflash.filesystem
Classpublic class FileStream
InheritanceFileStream Inheritance EventDispatcher Inheritance Object
ImplementsIDataInput, IDataOutput

A FileStream object is used to read and write files. Files can be opened synchronously by calling the open() method or asynchronously by calling the openAsync() method.

The advantage of opening files asynchronously is that other ActionScript code can execute while Apollo runs read and write processes in the background. When opened asynchronously, progress events are dispatched as operations proceed.

A file opened synchronously behaves much like a ByteArray object; a file opened asynchronously behaves much like a Socket or URLStream object. When a file is opened synchronously, the caller will pause while the requested data is read from or written to the underlying file. When opened asynchronously, any data written to the stream is immediately buffered and later written to the file.

Whether reading from a file synchronously or asynchronously, the actual read methods are synchronous. In both cases they read from data that is currently "available." The difference is that when reading synchronously all of the data is available at all times and when reading asynchronously data becomes available gradually as the data streams into a read buffer. Either way, the data that can be synchronously read at the current moment is represented by the bytesAvailable property.

An application processing asynchronous input will typically register for progress events and consume the data as it becomes available by calling read methods. Alternatively, an application can simply wait until all of the data is available by registering for the complete event and processing the entire data set when the complete event is dispatched.



Public Properties
 PropertyDefined by
  bytesAvailable : uint
[read-only] Returns the number of bytes of data available for reading in the input buffer.
FileStream
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  endian : String
The byte order for the data, either the BIG_ENDIAN or LITTLE_ENDIAN constant from the Endian class.
FileStream
  objectEncoding : uint
Used to determine whether the AMF3 or AMF0 format is used when writing or reading binary data using the readObject() or writeObject() method.
FileStream
  position : Number
The current position in the file.
FileStream
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  readAhead : Number
When reading files asynchronously, the amount of data requested.
FileStream
Public Methods
 MethodDefined by
  
Creates a FileStream object.
FileStream
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
EventDispatcher
  
close():void
Closes the FileStream object.
FileStream
 Inherited
Dispatches an event into the event flow.
EventDispatcher
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
EventDispatcher
  
open(file:FileReference, fileMode:String):void
Opens the FileStream object synchronously, pointing to the specified file.
FileStream
  
openAsync(file:FileReference, fileMode:String):void
Opens the FileStream object asynchronously, pointing to the specified file.
FileStream
  
Reads a Boolean value from the file stream, byte stream, or byte array.
FileStream
  
Reads a signed byte from the file stream, byte stream, or byte array.
FileStream
  
readBytes(bytes:ByteArray, offset:uint = 0, length:uint = 0):void
Reads the number of data bytes, specified by the length parameter, from the file stream, byte stream, or byte array.
FileStream
  
Reads an IEEE 754 double-precision floating point number from the file stream, byte stream, or byte array.
FileStream
  
Reads an IEEE 754 single-precision floating point number from the file stream, byte stream, or byte array.
FileStream
  
Reads a signed 32-bit integer from the file stream, byte stream, or byte array.
FileStream
  
readMultiByte(length:uint, charSet:String):String
Reads a multibyte string of specified length from the file stream, byte stream, or byte array using the specified character set.
FileStream
  
Reads an object from the file stream, byte stream, or byte array, encoded in AMF serialized format.
FileStream
  
Reads a signed 16-bit integer from the file stream, byte stream, or byte array.
FileStream
  
Reads an unsigned byte from the file stream, byte stream, or byte array.
FileStream
  
Reads an unsigned 32-bit integer from the file stream, byte stream, or byte array.
FileStream
  
Reads an unsigned 16-bit integer from the file stream, byte stream, or byte array.
FileStream
  
Reads a UTF-8 string from the file stream, byte stream, or byte array.
FileStream
  
Reads a sequence of length UTF-8 bytes from the file stream, byte stream, or byte array, and returns a string.
FileStream
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
EventDispatcher
 Inherited
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
  
truncate():void
Truncates the file at the position specified by the position property of the FileStream object.
FileStream
 Inherited
Returns the primitive value of the specified object.
Object
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
EventDispatcher
  
writeBoolean(value:Boolean):void
Writes a Boolean value.
FileStream
  
writeByte(value:int):void
Writes a byte.
FileStream
  
writeBytes(bytes:ByteArray, offset:uint = 0, length:uint = 0):void
Writes a sequence of length bytes from the specified byte array, bytes, starting offset(zero-based index) bytes into the file stream, byte stream, or byte array.
FileStream
  
writeDouble(value:Number):void
Writes an IEEE 754 double-precision (64-bit) floating point number.
FileStream
  
writeFloat(value:Number):void
Writes an IEEE 754 single-precision (32-bit) floating point number.
FileStream
  
writeInt(value:int):void
Writes a 32-bit signed integer.
FileStream
  
writeMultiByte(value:String, charSet:String):void
Writes a multibyte string to the file stream, byte stream, or byte array, using the specified character set.
FileStream
  
writeObject(object:):void
Writes an object to the file stream, byte stream, or byte array, in AMF serialized format.
FileStream
  
writeShort(value:int):void
Writes a 16-bit integer.
FileStream
  
writeUnsignedInt(value:uint):void
Writes a 32-bit unsigned integer.
FileStream
  
writeUTF(value:String):void
Writes a UTF-8 string to the file stream, byte stream, or byte array.
FileStream
  
writeUTFBytes(value:String):void
Writes a UTF-8 string.
FileStream
Events
 EventSummaryDefined by
 Inherited Dispatched when Flash Player gains operating system focus and becomes active.EventDispatcher
   Indicates that the stream has been closed by an explicit call to the close() method.FileStream
   Signals that the end of the stream has been reached.FileStream
 Inherited Dispatched when Flash Player loses operating system focus and is becoming inactive.EventDispatcher
   Indicates that an error occurred during an asynchronous file I/O operation.FileStream
   Signals that buffered data has been written to the file.FileStream
   Signals the availability of new data on the stream.FileStream
Property detail
bytesAvailableproperty
bytesAvailable:uint  [read-only]

Returns the number of bytes of data available for reading in the input buffer. User code must call bytesAvailable to ensure that sufficient data is available before trying to read it with one of the read methods.

Implementation
    public function get bytesAvailable():uint
endianproperty 
endian:String  [read-write]

The byte order for the data, either the BIG_ENDIAN or LITTLE_ENDIAN constant from the Endian class.

Implementation
    public function get endian():String
    public function set endian(value:String):void
objectEncodingproperty 
objectEncoding:uint  [read-write]

Used to determine whether the AMF3 or AMF0 format is used when writing or reading binary data using the readObject() or writeObject() method. The value is a constant from the ObjectEncoding class. By default, the AMF3 format is used.

Implementation
    public function get objectEncoding():uint
    public function set objectEncoding(value:uint):void

See also

ObjectEncoding
readObject()
writeObject()
positionproperty 
position:Number  [read-write]

The current position in the file. This value is modified in any of the following ways:

The position is defined as a Number (instead of uint) in order to support files larger than 232 bytes in length. The value of this property is always a whole number less than 253. If you set this value to a number with a fractional component, the value is rounded down to the nearest integer.

Implementation
    public function get position():Number
    public function set position(value:Number):void
readAheadproperty 
readAhead:Number  [read-write]

When reading files asynchronously, the amount of data requested.

This property determines how much data an asynchronous stream will attempt to read beyond the current position. The default value of this property is infinity: by default a file opened to read asynchronously will read as far as the end of the file.

Reading data from the read buffer does not change the value of the readAhead property. When you read data from the buffer, new data is read in to refill the read buffer.

The readAhead property has no effect on files opened synchronously.

As data is read in asynchronously, the FileStream object dispatches progress events. In the event handler method for the progress event, check to see that the required number of bytes are available (by checking the bytesAvailable property), and then read the data from the read buffer by using a read method.

Implementation
    public function get readAhead():Number
    public function set readAhead(value:Number):void

Example
The following code shows how to use the readAhead property to limit the amount of data read into a file to 100 bytes:
import flash.filesystem.*;

var file:File = File.documentsDirectory.resolve("Apollo Test/test.txt");
var fileStream:FileStream = new FileStream();
fileStream.readAhead = 100;
fileStream.addEventListener(ProgressEvent.PROGRESS, readProgressHandler)
fileStream.openAsync(file, FileMode.READ);
var results:ByteArray;

function readProgressHandler(event:ProgressEvent):void {
    if (fileStream.bytesAvailable >= 100) {
        fileStream.readBytes(results, 0, 100);
    }
}

Constructor detail
FileStream()constructor
public function FileStream()

Creates a FileStream object. Use the open() or openAsync() method to open a file.

See also

Method detail
close()method
public function close():void

Closes the FileStream object. You cannot read or write any data after you call the close() method. If the file was opened asynchronously (the FileStream object used the openAsync() to open the file), calling the close() method causes the object to dispatch the close event.

Closing the application automatically closes all files associated with FileStream objects in the application. However, it is best to register for a closed event on all FileStream objects opened asynchronously that have pending data to write, before closing the application (to ensure that data is written).

You can reuse the FileStream object by calling the open() or the openAsync() method. This will close any file associated with the FileStream object, but the object does not dispatch the close event.

For a FileStream object opened asynchronously (using the openAsync() method), even if you call the close() event for a FileStream object and delete properties and variables that reference the object, the FileStream object is not garbage collected as long as there are pending operations and event handlers are registered for their completion. In particular, an otherwise unreferenced FileStream object will persist as long as any of the following are still possible:


Events
Event — The file, which was opened asynchronously, is closed.

See also


Example
The following code opens a FileStream asynchronously and writes a text file named test.txt to the Apollo Test subdirectory of the user's documents directory. A call to the close() method of the FileStream object closes the file when the data is written.
import flash.filesystem.*;
import flash.events.Event;
            
var file:File = File.documentsDirectory;
file = file.resolve("Apollo Test/test.txt");
var fileStream:FileStream = new FileStream();
fileStream.openAsync(file, FileMode.WRITE);
fileStream.writeUTFBytes("Hello");
fileStream.addEventListener(Event.CLOSE, fileClosed);
fileStream.close();

function fileClosed(event:Event):void {
    trace("closed");
}

The following code opens a FileStream synchronously and writes a text file named test.txt to the Apollo Test subdirectory of the user's documents directory. A call to the close() method of the FileStream object closes the file when the data is written.
import flash.filesystem.*;
            
var file:File = File.documentsDirectory;
file = file.resolve("Apollo Test/test.txt");
var fileStream:FileStream = new FileStream();
fileStream.open(file, FileMode.WRITE);
fileStream.writeUTF("Hello");
fileStream.close();

open()method 
public function open(file:FileReference, fileMode:String):void

Opens the FileStream object synchronously, pointing to the specified file. If the FileStream object is already open, calling the method closes the file before opening and no further events (including close) are delivered for the previously-opened file.

On systems that support file locking, a file opened in "write" or "update" mode (FileMode.WRITE or FileMode.UPDATE) is not readable as until it is closed.

Parameters
file:FileReference — The File object specifying the file to open.
 
fileMode:String — A string from the FileMode class that defines the capabilities of the FileStream (such as the ability to read from or write to the file).

Throws
Error — The file does not exist; you do not have adequate permissions to open the file; you are opening a file for read access, and you do not have read permissions; or you are opening a file for write access, and you do not have write permissions.

See also


Example
The following code shows how to synchronously open a test.txt file in the Apollo Test subdirectory of the user's documents directory, and then read the file into a string, using the system character set as the text encoding.
import flash.filesystem.*;

var file:File = File.documentsDirectory;
file = file.resolve("Apollo Test/test.txt");
var fileStream:FileStream = new FileStream();
fileStream.open(file, FileMode.READ);
var str:String = fileStream.readMultiByte(file.size, File.systemCharset);
trace(str);
fileStream.close();

openAsync()method 
public function openAsync(file:FileReference, fileMode:String):void

Opens the FileStream object asynchronously, pointing to the specified file. If the FileStream object is already open, calling the method closes the file before opening and no further events (including close) are delivered for the previously-opened file.

If the fileMode parameter is set to FileMode.READ or FileMode.UPDATE, Apollo reads data into the input buffer as soon as the file is opened, and progress and open events are dispatched as the data is read to the input buffer.

On systems that support file locking, a file opened in "write" or "update" mode (FileMode.WRITE or FileMode.UPDATE) is not readable as until it is closed.

Parameters
file:FileReference — The File object specifying the file to open.
 
fileMode:String — A string from the FileMode class that defines the capabilities of the FileStream (such as the ability to read from or write to the file).

Events
Event — The file is opened successfully.
 
IOErrorEvent — The file does not exist; you do not have adequate permissions to open the file; you are opening a file for read access, and you do not have read permissions; or you are opening a file for write access, and you do not have write permissions.
 
ProgressEvent — Dispatched as data is read to the input buffer. (The file must be opened with the fileMode parameter set to FileMode.READ or FileMode.UPDATE.)
 
Event — The file data has been read to the input buffer. (The file must be opened with the fileMode parameter set to FileMode.READ or FileMode.UPDATE.)

See also


Example
The following code shows how to asynchronously open a test.txt file in the Apollo Test subdirectory of the user's documents directory, and then read the file into a string, using the system character set as the text encoding.
import flash.filesystem.*;
import flash.events.Event;

var file:File = File.documentsDirectory;
file = file.resolve("Apollo Test/test.txt");
var fileStream:FileStream = new FileStream();
fileStream.addEventListener(Event.COMPLETE, fileCompleteHandler)
fileStream.openAsync(file, FileMode.READ);

function fileCompleteHandler(event:Event):void {
    var str:String = fileStream.readMultiByte(fileStream.bytesAvailable, File.systemCharset);
    trace(str);
    fileStream.close();
}

readBoolean()method 
public function readBoolean():Boolean

Reads a Boolean value from the file stream, byte stream, or byte array. A single byte is read, and true is returned if the byte is nonzero, false otherwise.

Returns
Boolean — A Boolean value, true if the byte is nonzero, false otherwise.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readByte()method 
public function readByte():int

Reads a signed byte from the file stream, byte stream, or byte array.

Returns
int — The returned value is in the range -128 to 127.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readBytes()method 
public function readBytes(bytes:ByteArray, offset:uint = 0, length:uint = 0):void

Reads the number of data bytes, specified by the length parameter, from the file stream, byte stream, or byte array. The bytes are read into the ByteArray objected specified by the bytes parameter, starting at the position specified by offset.

Parameters
bytes:ByteArray — The ByteArray object to read data into.
 
offset:uint (default = 0) — The offset into the bytes parameter at which data read should begin.
 
length:uint (default = 0) — The number of bytes to read. The default value of 0 causes all available data to be read.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readDouble()method 
public function readDouble():Number

Reads an IEEE 754 double-precision floating point number from the file stream, byte stream, or byte array.

Returns
Number — An IEEE 754 double-precision floating point number.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readFloat()method 
public function readFloat():Number

Reads an IEEE 754 single-precision floating point number from the file stream, byte stream, or byte array.

Returns
Number — An IEEE 754 single-precision floating point number.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readInt()method 
public function readInt():int

Reads a signed 32-bit integer from the file stream, byte stream, or byte array.

Returns
int — The returned value is in the range -2147483648 to 2147483647.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readMultiByte()method 
public function readMultiByte(length:uint, charSet:String):String

Reads a multibyte string of specified length from the file stream, byte stream, or byte array using the specified character set.

Parameters
length:uint — The number of bytes from the byte stream to read.
 
charSet:String — The string denoting the character set to use to interpret the bytes. Possible character set strings include "shift-jis", "cn-gb", "iso-8859-1", and others. For a complete list, see Supported Character Sets.

Returns
String — UTF-8 encoded string.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).

See also

FileSystem.encoding
readObject()method 
public function readObject():*

Reads an object from the file stream, byte stream, or byte array, encoded in AMF serialized format.

Returns
* — The deserialized object

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readShort()method 
public function readShort():int

Reads a signed 16-bit integer from the file stream, byte stream, or byte array.

Returns
int — The returned value is in the range -32768 to 32767.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readUnsignedByte()method 
public function readUnsignedByte():uint

Reads an unsigned byte from the file stream, byte stream, or byte array.

Returns
uint — The returned value is in the range 0 to 255.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readUnsignedInt()method 
public function readUnsignedInt():uint

Reads an unsigned 32-bit integer from the file stream, byte stream, or byte array.

Returns
uint — The returned value is in the range 0 to 4294967295.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readUnsignedShort()method 
public function readUnsignedShort():uint

Reads an unsigned 16-bit integer from the file stream, byte stream, or byte array.

Returns
uint — The returned value is in the range 0 to 65535.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readUTF()method 
public function readUTF():String

Reads a UTF-8 string from the file stream, byte stream, or byte array. The string is assumed to be prefixed with an unsigned short indicating the length in bytes.

This method is similar to the readUTF() method in the Java IDataInput interface.

Returns
String — A UTF-8 string produced by the byte representation of characters.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
readUTFBytes()method 
public function readUTFBytes(length:uint):String

Reads a sequence of length UTF-8 bytes from the file stream, byte stream, or byte array, and returns a string.

Parameters
length:uint

Returns
String — A UTF-8 string produced by the byte representation of characters of specified length.

Events
IOErrorEvent — The file cannot be read or the file is not open. This event is dispatched only for files opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with read capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be read (for example, because the file is missing).
 
EOFError — The position specfied for reading data exceeds the number of bytes available (specified by the bytesAvailable property).
truncate()method 
public function truncate():void

Truncates the file at the position specified by the position property of the FileStream object. Bytes from the position specified by the position property to the end of the file are deleted. The file must be open for writing.


Throws
Error — The file is not open for writing.

See also


Example
The following code synchronously opens a test.txt file in the Apollo Test subdirectory of the user's documents directory, and then trims the file to 100 characters in length if it is greater than 100 characters in length.
import flash.filesystem.*;

var file:File = File.documentsDirectory;
file = file.resolve("Apollo Test/test.txt");
var fileStream:FileStream = new FileStream();
fileStream.open(file, FileMode.UPDATE);
if (file.size > 100) {
    fileStream.position = 100;
    fileStream.truncate();
}
fileStream.close();

The following code asynchronously opens a test.txt file in the Apollo Test subdirectory of the user's documents directory, and then trims the file to 100 characters in length if it is greater than 100 characters in length.
var file:File = File.documentsDirectory;
file = file.resolve("Apollo Test/test.txt");
var fileStream:FileStream = new FileStream();
fileStream.openAsync(file, FileMode.UPDATE);
trace("start", file.size)
if (file.size > 100) {
    fileStream.position = 100;
    fileStream.truncate();
}
fileStream.addEventListener(Event.CLOSE, fileClosed);
fileStream.close();
function fileClosed(event:Event):void {
    trace("closed", file.size); 
}

writeBoolean()method 
public function writeBoolean(value:Boolean):void

Writes a Boolean value. A single byte is written according to the value parameter, either 1 if true or 0 if false.

Parameters
value:Boolean — A Boolean value determining which byte is written. If the parameter is true Flash Player writes a 1; if false, Flash Player writes a 0.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeByte()method 
public function writeByte(value:int):void

Writes a byte. The low 8 bits of the parameter are used. The high 24 bits are ignored.

Parameters
value:int — A byte value as an integer.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeBytes()method 
public function writeBytes(bytes:ByteArray, offset:uint = 0, length:uint = 0):void

Writes a sequence of length bytes from the specified byte array, bytes, starting offset(zero-based index) bytes into the file stream, byte stream, or byte array.

If the length parameter is omitted, the default length of 0 is used; Flash Player writes the entire buffer starting at offset. If the offset parameter is also omitted, the entire buffer is written.

If the offset or length parameter is out of range, they are clamped to the beginning and end of the bytes array.

Parameters
bytes:ByteArray — The byte array to write.
 
offset:uint (default = 0) — A zero-based index indicating the position into the array to begin writing.
 
length:uint (default = 0) — An unsigned integer indicating how far into the buffer to write.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeDouble()method 
public function writeDouble(value:Number):void

Writes an IEEE 754 double-precision (64-bit) floating point number.

Parameters
value:Number — A double-precision (64-bit) floating point number.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeFloat()method 
public function writeFloat(value:Number):void

Writes an IEEE 754 single-precision (32-bit) floating point number.

Parameters
value:Number — A single-precision (32-bit) floating point number.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeInt()method 
public function writeInt(value:int):void

Writes a 32-bit signed integer.

Parameters
value:int — A byte value as a signed integer.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeMultiByte()method 
public function writeMultiByte(value:String, charSet:String):void

Writes a multibyte string to the file stream, byte stream, or byte array, using the specified character set.

Parameters
value:String — The string value to be written.
 
charSet:String — The string denoting the character set to use. Possible character set strings include "shift-jis", "cn-gb", "iso-8859-1" and others. For a complete list, see Supported Character Sets.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).

See also

FileSystem.encoding
writeObject()method 
public function writeObject(object:):void

Writes an object to the file stream, byte stream, or byte array, in AMF serialized format.

Parameters
object: — the object to be serialized

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeShort()method 
public function writeShort(value:int):void

Writes a 16-bit integer. The low 16 bits of the parameter are used. The high 16 bits are ignored.

Parameters
value:int — A byte value as an integer.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeUnsignedInt()method 
public function writeUnsignedInt(value:uint):void

Writes a 32-bit unsigned integer.

Parameters
value:uint — A byte value as an unsigned integer.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeUTF()method 
public function writeUTF(value:String):void

Writes a UTF-8 string to the file stream, byte stream, or byte array. The length of the UTF-8 string in bytes is written first, as a 16-bit integer, followed by the bytes representing the characters of the string.

Parameters
value:String — The string value to be written.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
writeUTFBytes()method 
public function writeUTFBytes(value:String):void

Writes a UTF-8 string. Similar to writeUTF(), but does not prefix the string with a 16-bit length word.

Parameters
value:String — The string value to be written.

Events
IOErrorEvent — You cannot write to the file (for example, because the file is missing). This event is dispatched only for files that have been opened for asynchronous operations (with the openAsync() method).

Throws
IOError — The file has not been opened; the file has been opened, but it was not opened with write capabilities; or for a file that has been opened for synchronous operations (with the open() method), the file cannot be written (for example, because the file is missing).
Event detail
closeevent 
Event object type: flash.events.Event
Event.type property = flash.events.Event.CLOSE

Indicates that the stream has been closed by an explicit call to the close() method.

Defines the value of the type property of a close event object.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe object whose connection has been closed.

See also

completeevent  
Event object type: flash.events.Event
Event.type property = flash.events.Event.COMPLETE

Signals that the end of the stream has been reached.

Defines the value of the type property of a complete event object.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe network object that has completed loading.

See also

ioErrorevent  
Event object type: flash.events.IOErrorEvent
IOErrorEvent.type property = flash.events.IOErrorEvent.IO_ERROR

Indicates that an error occurred during an asynchronous file I/O operation.

Defines the value of the type property of an ioError event object.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
errorIDA reference number associated with the specific error.
targetThe network object experiencing the input/output error.
textText to be displayed as an error message.
outputProgressevent  
Event object type: flash.events.OutputProgressEvent
OutputProgressEvent.type property = flash.events.OutputProgressEvent.OUTPUT_PROGRESS

Signals that buffered data has been written to the file.

progressevent  
Event object type: flash.events.ProgressEvent
ProgressEvent.type property = flash.events.ProgressEvent.PROGRESS

Signals the availability of new data on the stream.

Defines the value of the type property of a progress event object.

This event has the following properties:

PropertyValue
bubblesfalse
bytesLoadedThe number of items or bytes loaded at the time the listener processes the event.
bytesTotalThe total number of items or bytes that ultimately will be loaded if the loading process succeeds.
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe network object reporting progress.




 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/apollo/1.0/aslr/flash/filesystem/FileStream.html