###User Defined Function###
_FO_GetCopyName

###Description###
Returns the name of a nonexistent file copies.

###Syntax###
#Include <FileOperations.au3>
_FO_GetCopyName ( $sPath [, $iMode=0 [, $sText='Copy']] )

###Parameters###
@@ParamTable@@
$sPath
	The full path to the directory or file
$iMode
	[optional] How to add an index
		0 - (default) Standard, similar to creating a copy of a file in Win7
		1 - Append index to copies _1, _2, and so on.
$sText
	[optional] The text "Copy" can change depending on localization
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	Returns the path of the file copies
@@End@@

###Remarks###
The function does not return an error, because returns a row back (if the file does not exist), or the correct name.

###Related###
None.

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