<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc = "http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://livedocs.adobe.com/">
	<title>LiveDocs Comments - coldfusion - 6.1 - htmldocs - tags-p42.htm</title>	
		<link>http://livedocs.adobe.com/</link>
		<description>Macromedia LiveDocs - online documentation with user feedback.</description>
		<copyright>Copyright 2009, Macromedia, Inc.</copyright>
		<dc:date>2009-11-25T19:12:27</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#13139" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#12499" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#9441" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#9419" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#8467" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#13139">
		<title>coldfusion/6.1/htmldocs/tags-p42.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#13139</link>
		<description>You can do what OWIS has requested by specifying a filename filename pattern with wildcards in the directory attribute, as in directory=&quot;*.zip&quot; or directory=&quot;/opt/*.html&quot;.</description>
		<dc:creator>halL</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2004-04-20T08:34:33</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#12499">
		<title>coldfusion/6.1/htmldocs/tags-p42.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#12499</link>
		<description>Using CFFTP action=&quot;listdir&quot;,  It would be helpful to have more technical info on what FTP commands this sends.  &lt;br /&gt;It would also be helpful to be able to pass a file mask so you can limit the results in your returned query.&lt;br /&gt;For example, I am trying to get the file size and last modified date of a file on an FTP site that has 30,000 files in one directory.&lt;br /&gt;I would like to pass an FTP equiv command such as DIR TEST.JPG&lt;br /&gt;but I cannot seem to use action=&quot;listdir&quot; to do this...I can only get the whole directory.  If there is a way to pass this info like DIRECTORY=&quot;/TEST.JPG&quot; that would be good to know...however my tests seem to indiciate you cannot do this.&lt;br /&gt;&lt;br /&gt;Thank You.&lt;br /&gt;Ryan Jones</description>
		<dc:creator>OWIS</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-04-06T13:13:57</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#9441">
		<title>coldfusion/6.1/htmldocs/tags-p42.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#9441</link>
		<description>This is bug 51004 and should be fixed in the next release of ColdFusion.</description>
		<dc:creator>jrunrandy</dc:creator>
		<dc:type>1 0</dc:type>
		<dc:date>2004-03-02T13:20:49</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#9419">
		<title>coldfusion/6.1/htmldocs/tags-p42.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#9419</link>
		<description>The LastModified time returned by CFFTP seem to be one month later than the actual last modified time on the server. Moreover, AM/PM times are switched!!</description>
		<dc:creator>MarkZet</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-03-02T11:23:14</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#8467">
		<title>coldfusion/6.1/htmldocs/tags-p42.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p42.htm#8467</link>
		<description>Not clear what the Attributes - attribute is for.  It always seems to return an empty string.&lt;br /&gt;&lt;br /&gt;We are working to improve the examples in the ColdFusion reference pages. We propose to replace the current example on this page with the the following example. If you have any comments on this example, add them to this page.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Open a connection&lt;br /&gt;&lt;cfftp connection = &quot;myConnection&quot; &lt;br /&gt;   username = &quot;support&quot;&lt;br /&gt;   password = &quot;paradise&quot;&lt;br /&gt;   server = &quot;ftp.mydomain.com&quot;&lt;br /&gt;   action = &quot;open&quot; &lt;br /&gt;   stopOnError = &quot;Yes&quot;&gt; &lt;br /&gt;&lt;br /&gt;&lt;p&gt;Did it succeed? &lt;cfoutput&gt;#cfftp.succeeded#&lt;/cfoutput&gt;&lt;br /&gt;&lt;cfftp connection = &quot;myConnection&quot;&lt;br /&gt;    action = &quot;LISTDIR&quot;&lt;br /&gt;    stopOnError = &quot;Yes&quot;&lt;br /&gt;    name = &quot;ListDirs&quot;&lt;br /&gt;    directory = &quot;/support/downloads&quot;&gt;&lt;br /&gt;	&lt;br /&gt;&lt;p&gt;Choose the file to download by clicking on the URL link in table&lt;/p&gt;&lt;br /&gt;&lt;table&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;		&lt;td&gt;&lt;b&gt;File Name&lt;/b&gt;&lt;/td&gt;&lt;br /&gt;		&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;br /&gt;		&lt;td&gt;&lt;b&gt;Last Modified&lt;/b&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;!--- Code only displays files for download and does not display any subdirectories ---&gt;&lt;br /&gt;	&lt;cfloop query=&quot;ListDirs&quot;&gt;&lt;br /&gt;		&lt;cfif isdirectory is &quot;no&quot;&gt;&lt;br /&gt;			&lt;cfoutput&gt;&lt;br /&gt;			&lt;tr&gt;&lt;br /&gt;				&lt;td&gt;#name#&lt;/td&gt;&lt;br /&gt;				&lt;td&gt;&lt;a href = &quot;#url#&quot;&gt;#url#&lt;/a&gt;&lt;/td&gt;&lt;br /&gt;				&lt;td&gt;#DateFormat(lastmodified)#&lt;/td&gt;&lt;br /&gt;			&lt;/tr&gt;&lt;br /&gt;			&lt;/cfoutput&gt;&lt;br /&gt;		&lt;/cfif&gt;&lt;br /&gt;	&lt;/cfloop&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;cfdump var=&quot;#ListDirs#&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Close the connection:&lt;br /&gt;&lt;cfftp connection = &quot;myConnection&quot;&lt;br /&gt;    action = &quot;close&quot;&lt;br /&gt;    stopOnError = &quot;Yes&quot;&gt;&lt;br /&gt;&lt;p&gt;Did it succeed? &lt;cfoutput&gt;#cfftp.succeeded#&lt;/cfoutput&gt;</description>
		<dc:creator>lbryngel</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-02-19T09:45:36</dc:date>
	</item>
	</rdf:RDF>

