特定分区上的临时文件名?

发布于 2024-09-14 09:03:03 字数 166 浏览 7 评论 0原文

我了解 Path.GetTempFileName() 以及如何获取临时文件夹(通常位于 C 驱动器上)

但是如何获取特定分区上的临时文件名?我认为作为一种解决方法,我会执行类似 targetBaseDir/temp.tmp 的操作,然后在完成后执行 File.Move 操作。

I know about Path.GetTempFileName() and how to get the temp folder (usually its on your C drive)

But how do i get a temp filename on a specific partition? i think as a workaround i'll do something like targetBaseDir/temp.tmp and then File.Move when its complete.

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

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

发布评论

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

评论(1

小耗子 2024-09-21 09:03:03

为什么不创建您自己的 GetTempFilePath 方法呢?

或者您可以使用本机

string GetTempFilePath(string basePath, string extension)
{
    return Path.Combine(basePath, Guid.NewGuid().ToString()+"."+extension);
}

//Usage
GetTempFilePath("E:\\", "tmp");

//Output
//E:\e2e4873e-daf5-41b6-bdc5-2afec61921e2.tmp

GetTempFileName 方法通过 System.IO.Path.GetTempFileName()

Why not just create your own GetTempFilePath method?

Something like this

string GetTempFilePath(string basePath, string extension)
{
    return Path.Combine(basePath, Guid.NewGuid().ToString()+"."+extension);
}

//Usage
GetTempFilePath("E:\\", "tmp");

//Output
//E:\e2e4873e-daf5-41b6-bdc5-2afec61921e2.tmp

Or you can use the native GetTempFileName method that is used by System.IO.Path.GetTempFileName()

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