﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3733	_FileListToArrayRec hangs when using a UNC path	anonymous	Jos	"When using _FileListToArrayRec when $sFilePath is a UNC path (like 
{{{
\\winserver\ini\
}}}
), AutoIt hangs with 1 core on 100% usage and keeps eating up memory. It always worked before for me, so I guess a recent Windows 10 update caused this maybe?
Windows 7 is not affected.

Example:
{{{
#include <Array.au3>
#include <File.au3>
#include <MsgBoxConstants.au3>

Example()

Func Example()
    Local $aArray = _FileListToArrayRec(""\\winserver\ini\"", ""*.ini"", $FLTAR_RECUR, $FLTAR_FILES, $FLTAR_SORT)
    _ArrayDisplay($aArray, ""Sorted tree"")
EndFunc   ;==>Example
}}}


When using 'Long UNC' ([https://en.wikipedia.org/wiki/Path_(computing)#Universal_Naming_Convention Wikipedia]), the function works as expected and returns an array.
(e.g.: 
{{{
\\?\UNC\winserver\ini\
}}}
)"	Bug	closed	3.3.15.1	AutoIt	3.3.15.0	None	Fixed	_FileListToArrayRec UNC	
