ConvertToVaultPath Method

Converts a virtual drive file path to a vault-local vault item path.

Syntax

ANSI (Cross Platform)
char* ConvertToVaultPath(const char* lpszVirtualFilePath);

Unicode (Windows)
LPWSTR ConvertToVaultPath(LPCWSTR lpszVirtualFilePath);
- (NSString*)convertToVaultPath:(NSString*)virtualFilePath;
#define MID_CBDRIVE_CONVERTTOVAULTPATH 13

CBFSSTORAGE_EXTERNAL int CBFSSTORAGE_CALL CBFSStorage_CBDrive_Do(void *lpObj, int methid, int cparam, void *param[], int cbparam[], int64 *lpllVal);

Remarks

This method returns the vault-local absolute path of the vault item (file, directory, or symbolic link) that corresponds to the virtual drive file path specified by VirtualFilePath.

The value passed for VirtualFilePath must be a fully-qualified file path formatted according to OS conventions.

The value returned by this method can be used to access the corresponding vault item using the class APIs.

Note: This method can only be called when Active is true.

Error Handling (C++)

This method returns a String value; after it returns, call the GetLastErrorCode() method to obtain its result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.

Copyright (c) 2021 Callback Technologies, Inc. - All rights reserved.
CBFS Storage 2020 C++ Edition - Version 20.0 [Build 8031]