如何在CFFile中指定亲戚?

时间:2016-03-07 19:48:43

标签: coldfusion relative-path coldfusion-10 cffile

这是我的json文件的路径:https://devbox.mysite.com/search/KOGroups.json 但是我不喜欢使用cfhttp,而是喜欢使用cfifle和read动作。我不知道如何将此路径转换为cffile的相对路径。我已经阅读了这篇ColdFusion Read File文章,看起来他们在他们的例子中使用了绝对路径。我已经尝试了Ben Nadel的“Relative File Paths Work In A ColdFusion File System”文章,但他提供的用于获取父目录的代码对我来说并不适用。我只需要将此路径https://devbox.mysite.com/search/转换为cffile标记,以便我可以读取.json文件。

2 个答案:

答案 0 :(得分:2)

使用函数expandPath()

expandPath('../path/to/file')返回该文件的完整服务器路径。

答案 1 :(得分:0)

看起来像Adob coldfusion论坛中的BKBK已经用以下内容回答了我的问题:

<cfset koGroupsJSON = fileRead("https://devbox.mysite.com/search/KOGroups.json")>