cfdirectory を使用する場合、表示したいすべてのファイルのファイル拡張子を指定せずに、すべての cfm ファイルを除外して他のすべてのファイルを一覧表示するにはどうすればよいですか?
次のようなものを探しています。フィルター属性に注意してください。
<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">