Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/core/FatEntry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ bool FatEntry::isDirectory()
return attributes&FAT_ATTRIBUTES_DIR;
}

bool FatEntry::isVolumeId()
{
return attributes&FAT_ATTRIBUTES_VOLUME_ID;
}

bool FatEntry::isHidden()
{
return attributes&FAT_ATTRIBUTES_HIDE;
Expand Down
2 changes: 2 additions & 0 deletions src/core/FatEntry.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ using namespace std;
// Attributes
#define FAT_ATTRIBUTES_HIDE (1<<1)
#define FAT_ATTRIBUTES_DIR (1<<4)
#define FAT_ATTRIBUTES_VOLUME_ID 0x8
#define FAT_ATTRIBUTES_LONGFILE (0xf)
#define FAT_ATTRIBUTES_FILE (0x20)

Expand All @@ -32,6 +33,7 @@ class FatEntry

string getFilename();
bool isDirectory();
bool isVolumeId();
bool isHidden();
bool isErased();

Expand Down
2 changes: 2 additions & 0 deletions src/core/FatSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,8 @@ void FatSystem::list(vector<FatEntry> &entries)

if (entry.isDirectory()) {
printf("d");
} else if (entry.isVolumeId()) {
printf("v");
} else {
printf("f");
}
Expand Down