我如何使用cffile动作=阅读正确的方法?

时间:2015-10-06 10:35:09

标签: coldfusion coldfusion-10 cffile

我的目录文件夹中有一个表,其中包含我的所有.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>

0 个答案:

没有答案