WDDXFileRead(file)
Last updated October 15, 2002
Version: 2 | Requires: ColdFusion MX | Library: CFMLLib
Description:
Ever get annoyed at the couple of lines you are always writing to store and retrieve WDDX in flat files? Then this is the UDF for you. Also see it's sister UDF WDDXFileWrite()
Return Values:
Returns deserialized data.
Example:
hello = structNew();
hello.foo.bar = 2;
hello.thing = "a string";
// wddxfileWrite(expandPath("test.wddx"),hello);
// stuff = WDDXFileRead(expandPath("test.wddx"));
</cfscript>
<!---
<cfdump var="#stuff#">
--->
Parameters:
| Name | Description | Required |
|---|---|---|
| file | File to read and deserialize. | Yes |
Full UDF Source:
<!---
Reads a file containing WDDX and returns the CF variable.
Updated for CFMX var scope syntax.
@param file File to read and deserialize. (Required)
@return Returns deserialized data.
@author Nathan Dintenfass (nathan@changemedia.com)
@version 2, October 15, 2002
--->
<cffunction name="WDDXFileRead" output="no">
<cfargument name="file" required="yes">
<cfset var tempPacket = "">
<cfset var tempVar = "">
<!--- make sure the file exists, otherwise, throw an error --->
<cfif NOT fileExists(file)>
<cfthrow message="WDDXFileRead() error: File Does Not Exist" detail="The file #file# called in WDDXFileRead() does not exist">
</cfif>
<!--- read the file --->
<cffile action="read" file="#file#" variable="tempPacket">
<!--- make sure it is a valid WDDX Packet --->
<cfif NOT isWDDX(tempPacket)>
<cfthrow message="WDDXFileRead() error: Bad Packet" detail="The file #file# called in WDDXFileRead() does not contain a valid WDDX packet">
</cfif>
<!--- deserialize --->
<cfwddx action="wddx2cfml" input="#tempPacket#" output="tempVar">
<cfreturn tempVar>
</cffunction>
Search CFLib.org
Latest Additions
Shawn Porter added
DeMoronize
3 hour(s) ago
Chris Carey added
readPropertiesFi...
1 day(s) ago
Randy Johnson added
lastDayofWeek
3 day(s) ago
Frank Marion added
sitemapPing
7 day(s) ago
Top Rated
QuickSort
Rated 5.0, 3 time(s)
indentXml
Rated 5.0, 3 time(s)
queryColumnsToSt...
Rated 5.0, 3 time(s)
generateSsccAsn
Rated 5.0, 3 time(s)