如何“预约”文件名或确保文件名可用的最佳方法

发布于 2024-11-18 22:04:52 字数 315 浏览 1 评论 0原文

我需要调用一个方法来创建文件并在文件已存在时抛出异常。这可能听起来有些偏执,但我认为拥有诸如 string CreateTempFileNameAndReserveForThisProcess() 这样的方法会很有意义。

我能得到的最接近的东西是什么?

我目前使用的是:

string tempFileName = Path.GetTempFileName();
File.Delete(tempFileName);
// Call the function that requires the file not to exist.

I need to call a method that will create a file and throw an exception if the file already exists. This might sound paranoiac but I think it would make lots of sense to have a method such as string CreateTempFileNameAndReserveForThisProcess().

What is the closest thing I could get to this?

What I'm currently using is:

string tempFileName = Path.GetTempFileName();
File.Delete(tempFileName);
// Call the function that requires the file not to exist.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

洛阳烟雨空心柳 2024-11-25 22:04:52

请参阅此 http://msdn.microsoft.com/en -us/library/system.io.path.gettempfilename.aspx

如果你想保证每个进程/线程等都有一个唯一的文件,你可以创建一个具有该名称的文件Guid.NewGuid().ToString() + ".tmp"

See this http://msdn.microsoft.com/en-us/library/system.io.path.gettempfilename.aspx

If you want to guarantee a unique file for each process/thread etc. you can just go create a file with the name Guid.NewGuid().ToString() + ".tmp"

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