CFFILE Write-如果存在冲突如何使唯一?
知道为什么 CFFILE Write 不支持使其唯一,但 CFFile Upload 却支持吗?
我正在使用 CFFILE Write 来处理 GetHttpRequestData,并且能够支持使其独一无二将非常有帮助。有什么想法吗?
Any idea why CFFILE Write does not support making it unique but CFFile Upload does?
I'm using CFFILE Write to handle a GetHttpRequestData, and being able to support making it unique would be very helpful. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
嗯,事实并非如此。您必须通过首先检查文件是否存在以及是否存在来滚动自己的唯一名称,然后添加一些其他字符并重复检查/添加,直到找到唯一的名称。
或者,您总是在前面添加一些应该相当唯一的内容(例如日期时间增量数)。
Well, it doesn't. You'll have to roll your own unique names by first checking if the file exists and if it does, then add on some additional character(s) and repeat check/add until you've found something unique.
Alternatively, you always prepend something that ought to be fairly unique (e.g. date-time-incremental number).
尝试这样的事情
try something like this
使用 CreateUUID() 作为文件名怎么样?
How about using CreateUUID() as filename?