I have some file/directory managment tool based on TxF system. Basically it's working like this:
- I'm creating transaction using
CreateTransaction
function. - Somewhere later in the code I'm creating many directories using
CreateDirectoryTransacted
function. - Later I need to determine if I already created directory from point (2) in given path being still in this transaction (no
CommitTransaction
called so far).
Is there some substitute to PathFileExists
but working with transaction system?