Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
Pothys - MitrahSoftPothys - MitrahSoftPriority
NewLabels
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
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
Created 4 June 2018 at 13:14
Updated 8 May 2020 at 19:00
Resolved 11 June 2018 at 16:09
In lucee, using a fileClose() the status is not changed is still being open.In ACF, it changed the status into closed.
base = GetDirectoryFromPath(GetCurrentTemplatePath()); if(!directoryExists(base&"fileDir")){ directoryCreate(base&'fileDir'); } path = base&"/fileDir/sample.txt"; result=fileopen(path,'write'); fileWrite(result,'I love lucee'); writeDump(var=result, label="before closing a file"); fileclose(result); writeDump(var=result, label="After closing a file");
Result:
ACF : Closed
Lucee: Open