###User Defined Function###
_FO_SearchEmptyFolders

###Description###
Search for empty folders.

###Syntax###
#Include <FileOperations.au3>
_FO_SearchEmptyFolders ( $sPath [, $iType = 0 [, $iArray = 1 [, $iFull = 1]]] )

###Parameters###
@@ParamTable@@
$sPath
	Search path
$iType
	[optional] How to determine the empty folders
		0 - (default) Folder can contain empty folders without adding them to the list
		1 - Folders are empty completely
$iArray
	[optional] Specifies the output: array or list
		0 - Delimited list @CRLF 
		1 - (by default) Array, where $iArray[0]=number of folders
		2 - Array, where $iArray[0] contains the first folder
$iFull
	[optional] Paths in returned data
		0 - relative
		1 - (by default) Full path
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	Returns a list of folders.
Failure:	Returns an empty string and sets @error:
@error:	0 - No error
	1 - Invalid path
	2 - Not found
@@End@@

###Remarks###
Function is used to delete empty folders using the list. If the root directory is added to the result in this case only one. When $iFull = 0 root directory is returned as an empty string.

###Related###
None.

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