equal
deleted
inserted
replaced
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 } |