ConvertToDrivePath Method

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

Syntax

ANSI (Cross Platform)
char* ConvertToDrivePath(const char* lpszVaultFilePath);

Unicode (Windows)
LPWSTR ConvertToDrivePath(LPCWSTR lpszVaultFilePath);
- (NSString*)convertToDrivePath:(NSString*)vaultFilePath;
#define MID_CBDRIVE_CONVERTTODRIVEPATH 12

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

Remarks

This method returns a virtual drive file path that corresponds to the vault item (file, directory, or symbolic link) specified by VaultFilePath.

The value passed for VaultFilePath must be a vault-local absolute path.

The value returned by this method is a fully-qualified file path formatted according to OS conventions, suitable for passing to system file APIs and/or external applications.

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]