Protocols/MSNP/Activities/SDK/Techref/Objectmodel/Objects/Fileinfo/Properties/Path
<a class="clsStd" href="../index.htm">FileInfo</a>.Path Property
Returns the absolute path of the file that is being transferred.
VBScript Syntax
external.Channel.FileInfo.Path
JavaScript Syntax
window.external.Channel.FileInfo.Path
Property Value
A string containing the full path (absolute file name, starting with a drive letter or network path) of the file being transferred. If no files are currently being transferred, this property has no value.
VBScript Example
To display the path of a file being transferred, use the value of FileInfo.Path.
Dim testFile Set myChannel = external.Channel testFile = myChannel.FileInfo tdFileStatusBar.innerHTML = "File transfer in progress, filename is " + testFile.Path