生成括号内带有数字的文件名
我正在开发 ASP.NET 项目,用户可以将文件上传到服务器。我想用原来的文件名保存文件,但是如果同名文件已经存在,如何像Windows那样生成一个带括号数字的文件名?
文件上传到特定文件夹并以其客户端名称本身保存。因此,如果上传了名为 myimage.jpg 的文件,并且服务器中已存在同名文件,我需要将其重命名为 myimage(1).jpg或者如果“myimage.jpg”到“myimage(n).jpg”存在,我需要将其重命名为myimage(n+1).jpg。
搜索和生成此类文件名的最佳方法是什么?我的第一个猜测是使用 LINQ 以及 DirectoryInfo.EnumerateFiles()< 上的正则表达式/code>,但这是一个好方法吗?
I'm working with ASP.NET project where the user can upload files to the server. I want to save the file with its original name, but if the file with the same name already exists, how can I generate a filename with a number in the parenthesis like Windows does?
Files are uploaded to a particular folder and saved with its client-side name itself. So, if a file named myimage.jpg is uploaded and a file with the same name already exists in the server, I need to rename it to myimage(1).jpg or if 'myimage.jpg' to 'myimage(n).jpg' exists, I need to rename it to myimage(n+1).jpg.
What will be the best way to search for and generate such file names? My first guess was to use LINQ with a regex over DirectoryInfo.EnumerateFiles()
, but is that a good approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果具有相同原始名称的文件不必按上传日期/时间排序,您只需将 System.Guid.NewGuid().ToString() 附加到文件名即可。
If the files with the same original name don't have to be shown sorted by upload date/time, you could simply append System.Guid.NewGuid().ToString() to the file name.
您不需要 LINQ 或正则表达式。
如果原始文件名存在,请将
(1)
附加到该名称。如果存在,请将
(2)
附加到(原始)名称。等等...
You don't need LINQ or regex.
If the original filename exists, append
(1)
to the name.If that exists, append
(2)
to the (original) name.And so on...