txFileManager icon indicating copy to clipboard operation
txFileManager copied to clipboard

.NET Transactional File Manager is a .NET Standard library that allows you to enlist file operations (file/folder copies, writes, deletes, appends, etc.) in distributed transactions.

Results 11 txFileManager issues
Sort by recently updated
recently updated
newest added

Can we get versions of all of the methods with cancellation support (cancellation tokens or something similar)? So that I can cancel a file or directory move/copy in progress?

,NET 5.0 Source: ``` namespace NTFSTransactions { class Program { static void Main(string[] args) { DirectoryInfo folder = new DirectoryInfo("testFiles"); FileInfo[] files = folder.GetFiles(); AtomicRename(files.ToList()); } static void AtomicRename(List files)...

Using txFileManager to upload multiple file upload at once. The File Upload gets stuck when tried to upload multiple files. In incognito mode it works fine but in normal chrome...

Hello, Scenario: I want to move 5 files from one directory to another transactionally.. while debugging code on visual studio, - In trx scope, after moving 4 files, i throw...

WriteAllText without encoding: use the .Net overload without encoding. WriteAllText with encoding: pass on the encoding to .Net when not in a transaction.

We recently upgraded our packages and with that pulled in https://github.com/chinhdo/txFileManager/commit/103c6853177b39124289e4af3dcc3d94a540f3ed. Before that commit, the WriteAllText operation used File.WriteAllText without encoding, which uses Encoding.UTF8. After that commit, the WriteAllText that...