How do I get checked out files information?
Posted: Wed Jul 13, 2016 2:18 am
I want to get the information of files that are checked out.
The code below loops through each file of checkouts.
Problem: the only (file) properties I can access are FileId and CheckOutUsers.
Expectation: I need to get File Name and additional info if available.
The code below loops through each file of checkouts.
Problem: the only (file) properties I can access are FileId and CheckOutUsers.
Expectation: I need to get File Name and additional info if available.
Code: Select all
VaultClientCheckOutList chList = ServerOperations.ProcessCommandListCheckOuts();
foreach (var item in chList.Cast<VaultClientCheckOutItem>().ToList())
{
list.Add(item.FileID.ToString());
}