Project

General

Profile

Bug #739

Dir First$ and Dir Next$ do not return the "*" before folder names.

Added by Brian Flanagan about 3 years ago. Updated almost 3 years ago.

Status:
Closed
Priority:
High
Assignee:
AOZ Developers
Target version:
-
Start date:
04/25/2021
Due date:
% Done:

0%

Estimated time:
1:00 h
Affected version:

Description

Folder names are supposed to have a "*" as the first character to differentiate them from regular files.
Dir First$ and Dir Next$ do not return these.

Example: Assuming that that resources/filesystem/application folder contains:

testDir (a folder/directory)
empty.file ( a plain text file)

The following program:

F$=Dir First$
While F$<>""
  Print F$
  F$=Dir Next$
Wend

Produces this result:

testDir
empty.file

...but SHOULD produce this result:

*testDir
empty.file

Also available in: Atom PDF