Whatever message this page gives is out now! Go check it out!
getVFSMetaData (fileSystemType)Parameter | Description |
fileSystemType | The in-memory file system type. ColdFusion 9 supports only RAM. |
Parameter | Description |
Enabled | If support for in-memory virtual file system is enabled. This is the only key that is returned within the structure if in-memory virtual file system is disabled. |
Limt | The memory limit in bytes for in-memory virtual file system. |
Used | The memory out of the specified memory limit that is in use (in bytes). |
Free | The free memory in bytes. |
<cfset myroot = hash(getDirectoryFromPath(getCurrentTemplatePath())) >
<cfset name = "ram:///"&myroot&"/">
<cffile action="append" file="#name#" output="created at #now()#">
<cfset contents = fileRead(name)>
<cfdump var="#contents#">
<cfdump var="#getVFSMetaData("ram")#">