gpt4 book ai didi

coldfusion - 使用cffile重命名文件时如何获取文件扩展名

转载 作者:行者123 更新时间:2023-12-04 02:30:47 24 4
gpt4 key购买 nike

我正在使用 cffile标签上传我的文件并使用新名称重新保存。我的问题是文件可能有几种不同的格式,我不知道如何检测文件扩展名。我正在使用下面的代码:

<cfset ui = createUUID()>
<cffile
action="upload"
accept="video/x-flv, video/mp4, video/x-msvideo"
destination="e:\www2\uploads\#ui#.#cffile.ServerFileExt#"
nameconflict="makeunique"
filefield="form.file"
>

它告诉我 cffile 未定义。

最佳答案

我建议先上传,然后重命名:

<cfset ui = createUUID()>
<cffile
action="upload"
accept="video/x-flv, video/mp4, video/x-msvideo"
destination="e:\www2\uploads\"
nameconflict="makeunique"
filefield="form.file"
/>
<cffile
action="rename"
source="e:\www2\uploads\#cffile.serverFileName#"
destination="e:\www2\uploads\#ui#.#cffile.serverFileExt#"
/>

关于coldfusion - 使用cffile重命名文件时如何获取文件扩展名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5010076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com