0

我有一个包含我所有 .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&ouml;&szlig;e:" 
 text="#Size#">
<cfcol 
 header="Letztes Modifikationsdatum:" 
 text="#dateLastModified#">

</cftable> 

<form method="get" action="msuche.cfm">
    <button type="submit">Zur&uuml;ck</button>
</form>
4

0 回答 0