Core Function GetExtension
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> GetExtension ( <path> ) </pre> === Description === Returns the extension of the specified path string. === Parameters === ==== path ==== The path to use. === Return V...")
Newer edit →
(Created page with "<pre> GetExtension ( <path> ) </pre> === Description === Returns the extension of the specified path string. === Parameters === ==== path ==== The path to use. === Return V...")
Newer edit →
Revision as of 14:03, 1 December 2011
GetExtension ( <path> )
Contents |
Description
Returns the extension of the specified path string.
Parameters
path
The path to use.
Return Value
Success: Returns the extension including the ".".
Failure: Returns empty string.
Remarks
None
Example
$File = 'c:\windows\System32\Sputnik.exe'; println( GetExtension($File) );