ClientSftpChannel - RealPath
[C]
__cdecl FlowSshC_ClientSftpChannel_RealPath(
FlowSshC_ClientSftpChannel* channel,
wchar_t const* queryPath,
FlowSshC_RealPathHandler handler,
void* handlerData);
[C++]
[ClientSftpChannel] void RealPath(
wchar_t const* queryPath,
RefPtr<RealPathHandler> const& realPath);
[C#]
[ClientSftpChannel] public void RealPath(
string queryPath,
RealPathHandler realPath);
Parameters
- [C] channel: FlowSshC_ClientSftpChannel pointer.
- [C] handler: A RealPathHandler function to be used with the request. Required.
- [C] handlerData: An application-defined value to be passed to the handler. Optional.
- queryPath: The relative path to be converted. *
- [C++/.NET] realPath: A RealPathHandler object to be used with the request. Required.
Remarks
Use this request to convert a relative path to an absolute path with a leading slash ("/"). * See ClientSftpChannel's remarks about local and remote file namings.