WindowsFileSystemItemTryGetPathByItemId Method |
IT Hit User File System
Tries to get path to a file or folder by item ID.
Namespace:
ITHit.FileSystem.Windows
Assembly:
ITHit.FileSystem.Windows (in ITHit.FileSystem.Windows.dll) Version: 8.3.27213.0
Syntax public static bool TryGetPathByItemId(
byte[] itemId,
out string path
)
Public Shared Function TryGetPathByItemId (
itemId As Byte(),
<OutAttribute> ByRef path As String
) As Boolean
public:
static bool TryGetPathByItemId(
array<unsigned char>^ itemId,
[OutAttribute] String^% path
)
static member TryGetPathByItemId :
itemId : byte[] *
path : string byref -> bool
Parameters
- itemId
- Type: SystemByte
Item ID. - path
- Type: SystemString
Item path.
Return Value
Type:
BooleanTrue if the method succeeds, false - otherwise.
See Also