###User Defined Function###
_FO_PathSplit

###Description###
Divides the path on 3 parts: path, file, file extension.

###Syntax###
#Include <FileOperations.au3>
_FO_PathSplit ( $sPath )

###Parameters###
@@ParamTable@@
$sPath
	Path
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	Returns an array in the following format:
	$Array[0] = path
	$Array[1] = name of the file/directory
	$Array[2] = file extension
@@End@@

###Remarks###
The function does not return errors. If the absence of any element of the path, the array contains an empty cell for this item

###Related###
None.

###Example###
@@IncludeExample@@