Coldfusion 9のディレクトリにクエリがあります。なぜこのコードはMacで実行され、Windowsでは期待どおりの結果が得られないのですか?
<cfoutput>
<cfset fileLocation = "d:/tmp"> <!--- On mac set to /tmp --->
<cfdirectory
action = "list"
directory = "#fileLocation#"
name = "files"
>
Files found #files.recordcount# <br/>
<cfquery name="dir" dbtype="query">
select *
from files
where directory = <cfqueryparam value = "#fileLocation#">
</cfquery>
Query gives #dir.recordcount#
</cfoutput>
どちらのマシンもColdfusion10を実行しており、ディレクトリが存在します。Macでの出力は
Files found 5
Query gives 5
とウィンドウズ
Files found 5
Query gives 0
私は明らかなことを見逃していますか?