Modify ↓
Opened 17 years ago
Closed 17 years ago
#1073 closed Bug (Works For Me)
_FileListToArray on *.lnk files
| Reported by: | Owned by: | Gary | |
|---|---|---|---|
| Milestone: | Component: | Standard UDFs | |
| Version: | 3.3.0.0 | Severity: | None |
| Keywords: | Cc: |
Description
_FileListToArray return *.lnk files as folders if the link point to a folder. Should not this be threated as a file?
The file.au3 version is 33.0
#include <file.au3> #include <array.au3> Local $s = "C:\Users\Default\AppData\Local\" local $a ; _FileListToArray also return *.lnk files as folders $a = _FileListToArray($s,"*",2) _ArrayDisplay($a,"Dirs found") $a = _FileListToArray($s,"*",1) _ArrayDisplay($a,"Files found")
Attachments (0)
Change History (3)
follow-up: 2 comment:1 by , 17 years ago
comment:2 by , 17 years ago
Replying to anonymous:
_FileFindNextFile in 3.3.1.1 returns these files properly.
I guess this might be an error though, in FileGetAttrib()...
comment:3 by , 17 years ago
| Resolution: | → Works For Me |
|---|---|
| Status: | new → closed |
Works for me on XP Pro SP3 in both Release and beta.
Note:
See TracTickets
for help on using tickets.

_FileFindNextFile in 3.3.1.1 returns these files properly.