Opened 10 years ago
Closed 10 years ago
#2940 closed Bug (No Bug)
_FileListToArrayRec does not return files having no extension with "*.*" as filter
Reported by: | jguinch | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | 3.3.12.0 | Severity: | None |
Keywords: | Cc: |
Description
In a folder with some files that have no extension (for example the hosts file in C:\Windows\System32\drivers\etc), _FileListToArrayRec does not return the same thing than _FileListToArray if I use *.* as filter :
_FileListToArray("C:\Windows\System32\drivers\etc", "*") : returns all files
_FileListToArray("C:\Windows\System32\drivers\etc", "*.*") : returns all files
_FileListToArrayRec("C:\Windows\System32\drivers\etc", "*") : returns all files
_FileListToArrayRec("C:\Windows\System32\drivers\etc", "*.*") : returns only files with extensions
It seems logic that _FileListToArrayRec and _FileListToArray should have the same behaviour with the same filter, no ?
Attachments (0)
Change History (1)
comment:1 Changed 10 years ago by Melba23
- Resolution set to No Bug
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
See my reply in this thread:
http://www.autoitscript.com/forum/topic/165777-strange-behaviour-with-filelisttoarrayrec/#entry1210635
M23