Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
Pothys - MitrahSoftPothys - MitrahSoftPriority
BlockerLabels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NoneAffects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Pothys - MitrahSoft
Pothys - MitrahSoftPriority
Labels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Affects versions
Created 23 October 2019 at 13:46
Updated 10 May 2021 at 15:20
Resolved 25 May 2020 at 11:09
According to the use below code, the status didn't change when using fileclose().
<cfscript> base = GetDirectoryFromPath(GetCurrentTemplatePath()); if(!directoryExists(base&"fileDir")){ directoryCreate(base&'fileDir'); } path = base&"/fileDir/sample.txt"; result=fileopen(path,'write'); fileWrite(result,'lucee core dev'); writeoutput(result.status); fileclose(result); writeoutput(result.status); </cfscript>