如何在 CFFile 中指定亲戚?

How to specify a relative in CFFile?

这是我的 json 文件的路径:https://devbox.mysite.com/search/KOGroups.json 但是我不喜欢使用 cfhttp,而是喜欢使用带有读取操作的 cfile。我不知道如何把这个路径变成cffile的相对路径。我已经在 cffile 标签中读到这个 ​​ColdFusion Read File article and it looks like they use absolute path in their example. I've tried Ben Nadel's "Relative File Paths Work In A ColdFusion File System" article but the code that he provides for getting the parent directory is not working for me. All I need is to turn this path, https://devbox.mysite.com/search/,所以我可以读取 .json 文件。

Adob coldfusion 论坛中的 BKBK 似乎用以下内容回答了我的问题:

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

为此使用函数expandPath()

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