Datasave()

Saves the data/object to the given file location. Supports CFC serialization.

Usage

BOOLEAN = Datasave( data, fileurl, compress )
Argument Summary
data the data to save to disk
fileurl full path to store the data at
compress flag to determine if you wish to compress this on the disk; defaults to false [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Datasave(
   data=?, 
   fileurl=?, 
   compress=?
);

Supports passing parameters as a structure using ArgumentCollection:

Datasave( ArgumentCollection={
   data : ?, 
   fileurl : ?, 
   compress : ?
} );