生成括号内带有数字的文件名

发布于 2024-12-05 04:28:29 字数 494 浏览 0 评论 0原文

我正在开发 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 技术交流群。

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

发布评论

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

评论(3

玻璃人 2024-12-12 04:28:29

如果具有相同原始名称的文件不必按上传日期/时间排序,您只需将 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.

凉墨 2024-12-12 04:28:29
public static object lockObject = new object();
void UploadFile(...)
{
    //-- other code
    lock (lockObject)
    {
        int i = 1;
        string saveFileAs = "MyFile.txt";
        while (File.Exists(saveFileAs))
        {
           string fileNameWithoutExt = Path.GetFileNameWithoutExtension(saveFileAs);
           string ext = Path.GetExtension(saveFileAs)
           saveFileAs = String.Concat(fileNameWithoutExt, "(", i.ToString(), ")", ext);
           i++;
        }

        //-- Now you can save the file.
    }
}
public static object lockObject = new object();
void UploadFile(...)
{
    //-- other code
    lock (lockObject)
    {
        int i = 1;
        string saveFileAs = "MyFile.txt";
        while (File.Exists(saveFileAs))
        {
           string fileNameWithoutExt = Path.GetFileNameWithoutExtension(saveFileAs);
           string ext = Path.GetExtension(saveFileAs)
           saveFileAs = String.Concat(fileNameWithoutExt, "(", i.ToString(), ")", ext);
           i++;
        }

        //-- Now you can save the file.
    }
}
几味少女 2024-12-12 04:28:29

您不需要 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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文