.net 应用程序是否有任何类型的文件系统事务机制可用?
我正在为应用程序实现一个简单的更新机制,我正在编写更新过程的最后一部分,包括将当前应用程序可执行文件从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.