Extract file extension¶
function ExtractExt(fileName: string): string
This function takes any file name (with or without fully qualified path) and returns the extension only.
Example:
{
res = ExtractExt('/docs/sheets/budget.xlsx');
// res will be ".xlsx"
}