• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

cfdirectory showing folders but not files CF11

Contributor ,
Oct 13, 2014 Oct 13, 2014

Copy link to clipboard

Copied

I'm using the cfdirectory example code right of Adobe's site yet in CF11 I can only get it to show the folders in the directory and not any of the files.  Is it possibly a security setting in CF11?

The code is pretty basic:

<cfdirectory directory="D:/IIS" name="dirQuery" action="LIST">

<!--- Get an array of directory names. --->

<cfset dirsArray=arraynew(1)>

<cfset i=1>

<cfloop query="dirQuery">

<cfif dirQuery.type IS "dir">

    <cfset dirsArray=dirQuery.name>

    <cfset i = i + 1>

</cfif>

</cfloop>

<cfdump var="#dirsArray#">

<br>

<!--- Get all directory information in a query of queries.--->

<cfquery dbtype="query" name="dirsOnly">

SELECT * FROM dirQuery

WHERE TYPE='Dir'

</cfquery>

<cfdump var="#dirsOnly#"

Thanks!

Gary

Views

485

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Oct 14, 2014 Oct 14, 2014

ColdFusion is behaving as expected. By specifying 'dir' as type, you tell it to only show folders. If you want it to show files, then specify the type as 'file'.

Votes

Translate

Translate
Community Expert ,
Oct 14, 2014 Oct 14, 2014

Copy link to clipboard

Copied

ColdFusion is behaving as expected. By specifying 'dir' as type, you tell it to only show folders. If you want it to show files, then specify the type as 'file'.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Oct 14, 2014 Oct 14, 2014

Copy link to clipboard

Copied

Thanks!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 14, 2014 Oct 14, 2014

Copy link to clipboard

Copied

LATEST

Cheers, Gary.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation