|
|
|
|
|
METHOD: |
|
|
|
loadFromFile |
|
|
|
|
|
|
|
DESCRIPTION: |
|
|
|
Loads the contents of a file into a stream object. |
||
|
|
|
|
|
PROPERTY OF: |
|
|
|
|
||
|
|
||
|
SYNTAX: |
|
|
|
<oRef>.loadFromFile(<name expC>) |
||
|
<oRef> |
|
|
|
The stream object. |
|
|
|
<name expC> |
|
|
|
The name of a file to be loaded into the stream object, |
||
|
can contain any valid path and name in UNC format. |
||
|
|
||
|
DESCRIPTION: |
|
|
|
This method can be used to load the contents of a local file into a stream object. This can be used to upload the contents of a local file to a server. |
||
|
|
||
|
This method does not change the binding of the stream object; it will still be bound to the object specified by source property with which the stream was originally opened. |
||
|
Overwrites the current contents of the stream object with data read from the file. Any existing bytes in the stream are overwritten by the contents of the file. |
||
|
Any previously existing and remaining bytes following the EOS created by loadFromFile() method, are truncated. |
||
|
|
||
|
After a call to loadFromFile() method, the current position is set to the beginning of the stream (0). |
||
|
|
||
|
Because a byte-order mark (BOM) may be added to the beginning of the stream for encoding, |
||
|
the size of the stream may not exactly match the size of the file from which it was loaded. |
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
|
|