filesystemuis/memscaneng/serversrc/msengscanner.cpp
branchRCL_3
changeset 15 18e505e3f370
parent 14 efe289f793e7
equal deleted inserted replaced
14:efe289f793e7 15:18e505e3f370
   216                 // check the size of the file whose path was in the resource.
   216                 // check the size of the file whose path was in the resource.
   217                 TEntry file;
   217                 TEntry file;
   218                 TInt err = aFsSession.Entry(ptrName, file);
   218                 TInt err = aFsSession.Entry(ptrName, file);
   219                 if (err == KErrNone)
   219                 if (err == KErrNone)
   220                     {
   220                     {
   221                     TInt size = file.iSize;
   221                     TInt64 size = file.FileSize();
   222                     iScanArray->AddSizeByGroupL(groupindex, size);
   222                     iScanArray->AddSizeByGroupL(groupindex, size);
   223                     }
   223                     }
   224                     
   224                     
   225                 CleanupStack::PopAndDestroy(name);
   225                 CleanupStack::PopAndDestroy(name);
   226                 }
   226                 }