cfdocument srcfile case issue
Recently we start using coldfusion 9 and open office to convert office file to PDF, then we come across a very strange issue.
<cfset myDoc = "C:\my.DOC">
<cfdocument format="pdf" srcfile="#LCASE(myDoc)# filename="#myDoc#-a.pdf"></cfdocument>
<cfdocument format="pdf" srcfile="#myDoc# filename="#myDoc#-b.pdf"></cfdocument>
The output of C:\my.DOC-a.pdf is unreable (binary content) but C:\my.DOC-b.pdf is fine
Anyone have this problem?
Coldfusion version is 9,0,1,274733
