博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.NET Transactional File Manager
阅读量:5997 次
发布时间:2019-06-20

本文共 760 字,大约阅读时间需要 2 分钟。

.NET Transactional File Manager

对文件系统操作,比如copy, move, delete ,加入事务支持。

 

Project DescriptionTransactional 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 transactionTxFileManager fileMgr = new TxFileManager();using (TransactionScope scope1 = new TransactionScope()){    // Copy a file    fileMgr.Copy(srcFileName, destFileName);    // Insert a database record    dbMgr.ExecuteNonQuery(insertSql);    scope1.Complete();}

 

转载地址:http://uwqlx.baihongyu.com/

你可能感兴趣的文章
C#中如何选择使用T[]或List<T>
查看>>
对象不支持此属性或方法
查看>>
process launch failed : failed to get the task for process xxx
查看>>
ADS1.2安装
查看>>
[华为机试练习题]9.坐标移动
查看>>
April Fools Day Contest 2016 B. Scrambled
查看>>
iOS开发--多线程
查看>>
网易游戏2015年暑期实习生面试经历-游戏研发project师
查看>>
Celery的实践指南
查看>>
Shell中的while循环【转】
查看>>
Linux下安装memcached
查看>>
qt介绍
查看>>
error
查看>>
ASP.NET MVC下使用AngularJs语言(一):Hello your name
查看>>
[书目20111003]Ivor Horton's Beginning Java, Java 7 Edition
查看>>
centos使用yum安装软件的时候出现了undefined symbol: CRYPTO_set_locking_callback
查看>>
对springMVC的简单理解
查看>>
android studio下生成jni头文件
查看>>
最简单的Android教程之自定义控件
查看>>
虚拟 router 原理分析- 每天5分钟玩转 OpenStack(101)
查看>>