标签:
.NET Transactional File Manager
http://transactionalfilemgr.codeplex.com/
对文件系统操作,比如copy, move, delete ,加入事务支持。
Project Description Transactional File Manager is a .NET API that supports including file system operations such as file copy, move, delete, append, etc. in a transaction. It‘s an implementation of System.Transaction.IEnlistmentNotification (works with System.Transactions.TransactionScope). This library allows you to wrap file system operations in transactions like this: // Wrap a file copy and a database insert in the same transaction TxFileManager fileMgr = new TxFileManager(); using (TransactionScope scope1 = new TransactionScope()) { // Copy a file fileMgr.Copy(srcFileName, destFileName); // Insert a database record dbMgr.ExecuteNonQuery(insertSql); scope1.Complete(); }
.NET Transactional File Manager
标签:
原文地址:http://www.cnblogs.com/zfanlong1314/p/4410520.html