Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
和做fileMove()完全一样的事情<cffile action="rename">吗?
fileMove()
<cffile action="rename">
不,它们是不同的。没有可用于重命名文件的 CFML 脚本功能。所以,上面的用例只是实现文件重命名的一个技巧。
您必须指定相同的源文件夹和目标文件夹,但要更改 <destination> 中的文件名。
filemove("c:\userdata\files\myFile.docx", "c:\userdata\files\yourFile.docx");