----------------------------------------------------------------------------------------------------------------------------
Check if a specific item exists in the storage
Using C#
bool exists = FileStorageFacade.Exists(fileStorageName, dataIdentifier);
Using the CLI
H:\CLI>FileStorageCmd.exe exists mystorage 00000000-0000-0000-0000-000000008a7d
True
This operation took 11 msecs
H:\CLI>FileStorageCmd.exe exists mystorage 00000000-0000-ffff-0000-000000008a7d
False
This operation took 10 msecs
----------------------------------------------------------------------------------------------------------------------------