在 Coldfusion 中,如何找到链接文件的文件大小并将其用作 alt 属性

发布于 2024-09-16 14:44:03 字数 464 浏览 13 评论 0原文

我有一个很大的列表,其中包含链接到 pdf 和 msword 文件的图标。我想获取链接文件的文件大小(以 kb 为单位),然后将其用作图像上的 alt 属性。生成的代码看起来像这样。

Description of file <a href="file1.pdf"><img src="pdficon.gif" alt="27.6 kb" /></a> 
<a href="file1.doc"><img src="wordicon.gif" alt="33.2 kb" /></a>

所有文件的链接都是静态 href,因为并非目录中的所有文件都在此列表中使用。我将如何进行冷融合?我是否必须使用 cfdirectory 获取所有文件,然后将它们与 href 匹配?或者有没有办法只解析父级 href 并获取文件大小?

谢谢!

I have a large list with icons linking to pdf and msword files. I'd like to get the filesize in kb of the linked file then use that as the alt attribute on the image. The generated code would look something like this.

Description of file <a href="file1.pdf"><img src="pdficon.gif" alt="27.6 kb" /></a> 
<a href="file1.doc"><img src="wordicon.gif" alt="33.2 kb" /></a>

All the links to the files are static href's as not all the files in the directory are used in this list. How would I go about doing in coldfusion? Would I have to get all the files using cfdirectory and then match them up with the href's? Or is there a way to just parse the parent href and grab the filesize?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷离° 2024-09-23 14:44:03

是时候使用Java了

<cfset file = createObject("java","java.io.File").init("/directoy/filename")>
<cfset fileSizeInKB = file.length() / 1024>

Time to use Java

<cfset file = createObject("java","java.io.File").init("/directoy/filename")>
<cfset fileSizeInKB = file.length() / 1024>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文