ShellBrowser Delphi Components Documentation
|
The Unicode versions of several functions permit a maximum path length of approximately 32,000 characters composed of components up to MAX_PATH characters in length. To specify that kind of path, use the "\?" ("\?UNC" for UNC-Path) prefix for paths longer than MAX_PATH chars. This function removes the Unicode api call prefix from the passed path prefix.
class function RevertUnicodeAPICallPath(const pPath: String): String; static;
Parameters |
Description |
const pPath: String |
The path to remove the prefix to. |
String: The modified path if it is a long path (>MAX_PATH chars). The passed path otherwise
roth