| 221 | */ |
| 222 | |
| 223 | bool FatFileSystem::getFileInformation(const char *filename,FileInformation*& info) { |
| 224 | |
| 225 | DirectoryEntryWithLocation dirent; |
| 226 | |
| 227 | TokenisedPathname tp(filename); |
| 228 | if(!getDirectoryEntry(tp,dirent)) |
| 229 | return false; |
| 230 | |
| 231 | info=new FatFileInformation(filename,dirent); |
| 232 | return true; |
| 233 | } |
| 234 | |
| 235 | |
| 236 | /** |
no outgoing calls
no test coverage detected