Skip to main content
Participating Frequently
April 6, 2009
Question

Creating a Calander that Queries a Folder

  • April 6, 2009
  • 1 reply
  • 371 views

I'm trying to create a calander popup that will look into a folder (rather than a db) and retrieve a file created on that date. Is this possible? If so how (I'm a noob)?

This topic has been closed for replies.

1 reply

April 7, 2009

This is absolutely possible, but your question is a little too vague to give you specifics. You'll need to look into using the cffile tag to get the file off of disk. If we assume that your popup takes a date through the URL, and your files are formatted as "yyyy-mm-dd.txt" in a folder called "myfiles" at the sae level as your popup, then you could do something like this:

<cffile action="read" file="#ExpandPath("myfiles/#DateFormat(URL.myDate, "yyyy-mm-dd")#.txt" variable="myFileContent" />

Then, to output the content of the file:

<cfoutput>#myFileContent#</cfoutput>

You can find more information on the cffile tag here:

http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_f_02.html

Hope that helps,

Daniel Short

Adobe Community Expert

Message was edited by: Daniel Short. Added syntax highlighting.