-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
recursive file listing is hard (feature request) #33
Comments
Do you have time to review some future pending work for DOSFS/FS ? |
Sure.
…On Sun, Feb 4, 2018 at 8:10 PM, Thomas Roell ***@***.***> wrote:
Do you have time to review some future pending work for DOSFS/FS ?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#33 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACV5BRfdL5i2IKBOG2RG0a_PqJEwInLQks5tRn9DgaJpZM4R3tK4>
.
|
Mind quickly sending me a note to [email protected] to take this
offline ?
- Thomas
…On Sun, Feb 4, 2018 at 9:23 PM, profezzorn ***@***.***> wrote:
Sure.
On Sun, Feb 4, 2018 at 8:10 PM, Thomas Roell ***@***.***>
wrote:
> Do you have time to review some future pending work for DOSFS/FS ?
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#33#
issuecomment-362976940>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-
auth/ACV5BRfdL5i2IKBOG2RG0a_PqJEwInLQks5tRn9DgaJpZM4R3tK4>
> .
>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#33 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AG4QfMhdPMo516JRa9q0vebqe8xkefrHks5tRoI5gaJpZM4R3tK4>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be very helpful if the Dir class (in FS.h) has a method that tells you if the current entry is a directory. It would make it much easier to do recursive file scans.
Suggested implementation:
bool isdir() const { return _find.attr & F_ATTR_DIR; }
The text was updated successfully, but these errors were encountered: