Whatever message this page gives is out now! Go check it out!
streamingSpreadsheetCleanup(source)| Name | Required | Type | Description |
| spreadsheetObj | Yes | String | The file path of the streaming spreadsheet whose temporary files are to be cleaned. |
<cfscript>
theFile=GetDirectoryFromPath(GetCurrentTemplatePath()) & "file-stream.xlsx";
obj = streamingSpreadsheetNew("data")
try{
streamingspreadsheetcleanup(obj)
writeOutput("Streaming spreadsheet" & theFile & " is successfully cleaned")
}
catch(any e){
writeDump(e)
}
</cfscript>