os.Path.extension
Returns the file extension.
Syntax
os.Path.extension(
path STRING)
RETURNS STRING
- path is the path to a file.
Usage
The function returns the string following the last dot found in path.
If path does not have an extension, the function returns
NULL
.