To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…
Transactional File Manager Is Now On CodePlex
It’s my first open source project! I’ve gone open source with my Transactional File Manager. Check out the CodePlex link here.
Use any file system as a transactional file system! Transactional File Manager is a .NET API that supports including file system operations such as file copy, move, delete in a transaction. It’s an implementation of System.Transaction.IEnlistmentNotification (works with System.Transactions.TransactionScope).
More on Transactional File Manager in my original blog post on it. If you are interested in contributing to the project, let me know.
[…] Transactional File Manager Is Now On CodePlex – Chinh Do announce the first release of Transactional File Manager on CodePlex. This library wraps up the .NET File interaction API methods such as copy, move, etc, and allows them to be utilised within a transaction with full transaction support. […]
What makes .NET Transactional File Manager different from AlphaFS – another Transactional NTFS (TxF) implementation for .Net? http://alphafs.codeplex.com/
Anders:
Thanks for the link to AlphaFS. From the description, it provides a wrapper over Transactional NTFS (TxF). My library is for when you cannot use Transactional NTFS, which is only available in Windows Vista, Windows 7 and Windows Server 2008. Transactional NTFS also does not support network shares.
Chinh