.net 应用程序是否有任何类型的文件系统事务机制可用?

发布于 2024-08-24 18:09:42 字数 267 浏览 3 评论 0原文

我正在为应用程序实现一个简单的更新机制,我正在编写更新过程的最后一部分,包括将当前应用程序可执行文件从 myApp.exe 重命名为 myApp.old.exe,然后重命名新下载和更新的文件文件从 myApp.new.exe 到 myApp.exe。

我想找到一种方法使这两个操作成为原子操作,因为如果我的应用程序在重命名后和重命名新版本之前崩溃(出于任何原因,就像小行星落在电源线上),它将是陷入无法使用常用快捷方式重新启动的状态,因此无法完成更新。

那么有什么办法可以保证更新失败呢?

I'm implementing a simple update mechanism for an application I'm writing the last part of the update process consist in renaming the current application executable file from something like myApp.exe to myApp.old.exe and then renaming the freshly downloaded and updated file from myApp.new.exe to myApp.exe.

I'd like to find a way for theses two operation to be atomic, because if my application crash (for any reason, like an asteroids falling on a power line) after it renamed itself and before it renamed the new version, it will be stuck in a state where it can't be restarted by using the usual shortcuts, so it won't be able to finish it's update.

So is there anyway to make the update failsafe?

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

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

发布评论

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

评论(1

怕倦 2024-08-31 18:09:42

在 2008/Vista 上是的,尽管它没有暴露。那时,NTFS 在文件系统/内核级别上获得了文件系统事务。

请检查:

http://www.michaelckennedy.net/blog/2007 /12/07/SystemTransactionsAndWindowsVistaNTFSUpdated.aspx

http: //www.codeguru.com/cpp/misc/misc/fileio/article.php/c9987

http://xavierdecoster.wordpress.com/2009/10/18/transactional-ntfs-txf/

他们有代码示例。

On 2008/Vista upward yes, though it is not exposed. At that point, NTFS got file system transactions on the file system / kernel level.

Please check:

http://www.michaelckennedy.net/blog/2007/12/07/SystemTransactionsAndWindowsVistaNTFSUpdated.aspx

http://www.codeguru.com/cpp/misc/misc/fileio/article.php/c9987

http://xavierdecoster.wordpress.com/2009/10/18/transactional-ntfs-txf/

They have code samples.

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