使用 cfdirectory 时,如何排除所有 cfm 文件并列出所有其他文件而不指定我想要查看的所有文件的文件扩展名,或者在不进行查询查询的情况下排除 index.html 等特定文件?
我正在寻找类似以下的内容,请注意 filter 属性。
<cfdirectory directory="#ExpandPath('./')#" action="list" name="qryFiles" filter="!index.html" sort="name ASC" listinfo="name">
或者:
<cfdirectory directory="#ExpandPath('./')#" action="list" name="qryFiles" filter="!*.cfm" sort="name ASC" listinfo="name">