The problem with mapped drives is that they may not be available or set 
under the user account the Coldfusion service is using.  I'm assuming 
your running on a Windows box.  Drive mappings are created at the time a 
user logs onto a Windows box.  Since Coldfusion runs as a service, the 
user account it is assigned to run under never "logs in".  You'd be 
better off using a UNC path.

Carl

On 6/29/2011 12:20 PM, Terry Troxel wrote:
> It just might help if I pasted in the code.....sorry.
>
> On Wed, Jun 29, 2011 at 12:19 PM, Terry Troxel<terry.tro...@gmail.com>wrote:
>
>> What am I doing wrong here as nothing shows up even with debugging turned
>> on.
>> The S drive is a mapped network drive.
>> If mapped drive is the issue, is there any way around it?
>>
>> Terry
>>
> <cfset dir="s:\">
> <cfdirectory
>     action="list"
>     directory="#dir#"
>     filter="*.*"
>     name="slides"
>     sort="name">
> <table>
> <cfoutput query="slides">
> <tr><td></td><td>#name#</td></tr>
> </cfoutput>
> </table>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345943
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to