Protocols/MSNP/Activities/SDK/Techref/Objectmodel/Objects/Fileinfo/Properties/Path: Difference between revisions
Jump to navigation
Jump to search
Animadoria (talk | contribs) (Created automatically by Anima Importer) |
Animadoria (talk | contribs) (Created automatically by Anima Importer) |
||
Line 1: | Line 1: | ||
<!-- Generated @ 08/12/2022 23: | <!-- Generated @ 08/12/2022 23:46:04 +01:00 using Anima's CHM converter based on techref/objectmodel/objects/fileinfo/properties/Path.htm --> | ||
{{Protocols/MSNP|section=Activities}} | {{Protocols/MSNP|section=Activities}} | ||
__NOTOC__= <a class="clsStd" href="../index.htm">FileInfo</a>.Path Property = | __NOTOC__= <a class="clsStd" href="../index.htm">FileInfo</a>.Path Property = |
Revision as of 22:46, 12 August 2022
<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