Skip to main content
Known Participant
April 26, 2013
Answered

FileExists problems

  • April 26, 2013
  • 1 reply
  • 653 views

I am trying to do test to see if a file is in a specific file folder location and if the file exists then it displays the icon to download it.  Here is the code I have so far and I just need a little help to get it going. The part #queryObj2.Video_path# is just part of a query that returns a name in the video_path.  Thanks.

CODE:

<cfset yourFile = "../download/files/powerpoints/"&#queryObj2.Video_path#&".pptx">

<cfif FileExists(yourFile)>

    <p>Your file exists in this directory. You entered the correct filename</p>

</cfif>

    This topic has been closed for replies.
    Correct answer WolfShade

    I might be mistaken, but I believe that CFFILE requires the full physical path; relative paths do not work.  C:\CF9\wwwroot\path\to\file\#queryObj2.Video_path# or the like.

    ^_^

    1 reply

    WolfShade
    WolfShadeCorrect answer
    Legend
    April 26, 2013

    I might be mistaken, but I believe that CFFILE requires the full physical path; relative paths do not work.  C:\CF9\wwwroot\path\to\file\#queryObj2.Video_path# or the like.

    ^_^

    Known Participant
    April 26, 2013

    Thats it thank you so much.