特定分区上的临时文件名?
我了解 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不创建您自己的 GetTempFilePath 方法呢?
或者您可以使用本机
GetTempFileName 方法通过 System.IO.Path.GetTempFileName()
Why not just create your own GetTempFilePath method?
Something like this
Or you can use the native GetTempFileName method that is used by
System.IO.Path.GetTempFileName()