我的目录文件夹中有一个表,其中包含我的所有.txt文件。现在我希望所有.txt文件都是可读的。我知道我必须使用<cffile action="read" ...>
,但总会出现问题。如何将cffile
标记集成到我的脚本中?
<cfparam name="name" default="0">
<h3>cfdirectory-Test</h3>
<cfdirectory
directory = "#ExpandPath('150903T')#"
action= "list"
name = "meinVerzeichnis"
sort = "name ASC, Type DESC, dateLastModified, Size"
type = "all"
filter = "*#name#*"
>
<cftable border="2"
query="meinVerzeichnis"
htmltable
colheaders>
<cfcol
header="Name:"
text="#Name#">
<cfcol
header="Type:"
text="#Type#">
<cfcol
header="Größe:"
text="#Size#">
<cfcol
header="Letztes Modifikationsdatum:"
text="#dateLastModified#">
</cftable>
<form method="get" action="msuche.cfm">
<button type="submit">Zurück</button>
</form>