bool IsFile (string uriAsString)
 
Determine if the supplied URI refers to the file system.
Exceptions:
OutOfMemoryException
Thrown when a low memory situation occurs.
Parameters:
uriAsString
The URI as string.
Returns:
True if file, false if not.
Determine if \network and file:///network/filesystem/file are file URIs.
<xsl:if test="wwuri:IsFile('\\\\network\\filesystem\\file')">
  <xsl:variable name = "VarLog" select="wwlog:Message('File!')" />
</xsl:if>

<xsl:if test="wwuri:IsFile('file:///network/filesystem/file')">
  <xsl:variable name = "VarLog" select="wwlog:Message('File!')" />
</xsl:if>
Was this helpful?
Last modified date: 10/14/2020