| JUCE
    | 
Contains cached information about one of the files in a DirectoryContentsList. More...
#include <juce_DirectoryContentsList.h>
| Public Attributes | |
| String | filename | 
| The filename. | |
| int64 | fileSize | 
| File size in bytes. | |
| Time | modificationTime | 
| File modification time. | |
| Time | creationTime | 
| File creation time. | |
| bool | isDirectory | 
| True if the file is a directory. | |
| bool | isReadOnly | 
| True if the file is read-only. | |
Contains cached information about one of the files in a DirectoryContentsList.
| String DirectoryContentsList::FileInfo::filename | 
The filename.
This isn't a full pathname, it's just the last part of the path, same as you'd get from File::getFileName().
To get the full pathname, use DirectoryContentsList::getDirectory().getChildFile (filename).
| Time DirectoryContentsList::FileInfo::modificationTime | 
File modification time.
As supplied by File::getLastModificationTime().
| Time DirectoryContentsList::FileInfo::creationTime | 
File creation time.
As supplied by File::getCreationTime().
| bool DirectoryContentsList::FileInfo::isDirectory | 
True if the file is a directory.
| bool DirectoryContentsList::FileInfo::isReadOnly | 
True if the file is read-only.