使用 ColdFusion 生成计算机目录
我想使用 ColdFusion 显示计算机的根目录。我的意思是
- C:/
- D:/
- MyDocument
- 等...
提前致谢
编辑: 首先感谢所有回复的人。我只是对我的问题进行更多澄清。我想显示我的计算机的根目录。假设我有一些文档要保存在我的电脑中。我不知道该文档保存在哪里。在CF页面中我想显示
- C:/
- D:/
- E:/
我想显示通过Java或CF动态生成的上述目录名称。 我想现在我的问题大家都清楚了。感谢大家。
I would like to display a computer's root directory using ColdFusion. By that I mean
- C:/
- D:/
- MyDocument
- etc...
Thanks in advance
Edit:
First of all thanks to everybody that responded. I just give some more clarification about my question. I want display my computer's root directory. Suppose I have some documents to save in my PC. I don't know where I save that doc. In a CF page I want to display
- C:/
- D:/
- E:/
I want to display the above directory names dynamically generated through Java or CF.
I think now my question is clear to everybody. Thanks to all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
cfdirectory
。例如:
这将转储服务器 C 驱动器中的目录和文件列表,其行为类似于标准数据库查询。
要将多个目录放入同一查询变量中,您可以获取两个列表和一个“查询的查询”来合并它们:
Use
cfdirectory
.For example:
That will dump a list of the directories and files in the server's C drive, and acts like a standard database query.
To get multiple directories into the same query variable, you can get two lists and a "Query of Queries" to merge them:
下面的代码可能对您有帮助
您可以在下面的链接中找到详细的答案:
http://www.tek-tips.com/viewthread.cfm?qid=691047
Below code may help you
You can find detailed answer at below link:
http://www.tek-tips.com/viewthread.cfm?qid=691047