commit
e833b49209
|
@ -26,10 +26,17 @@ quint64 CBoxMonitor::CounDirSize(const QString& Directory, SBox* Box)
|
|||
return TotalSize;
|
||||
|
||||
QDir Dir(Directory);
|
||||
foreach(const QFileInfo & Info, Dir.entryInfoList(QDir::Files | QDir::Dirs | QDir::Hidden | QDir::NoDotAndDotDot))
|
||||
foreach(const QFileInfo & Info, Dir.entryInfoList(QDir::Files | QDir::Dirs | QDir::Hidden | QDir::System | QDir::NoDotAndDotDot))
|
||||
{
|
||||
if (Info.isDir())
|
||||
TotalSize += CounDirSize(Info.filePath(), Box);
|
||||
else if (Info.isShortcut())
|
||||
{
|
||||
QFile File(Info.filePath());
|
||||
if (File.open(QFile::ReadOnly))
|
||||
TotalSize += File.size();
|
||||
File.close();
|
||||
}
|
||||
else
|
||||
TotalSize += QFile(Info.filePath()).size();
|
||||
}
|
||||
|
|
|
@ -166,6 +166,19 @@ public:
|
|||
return QFile::open(flags);
|
||||
}
|
||||
|
||||
qint64 size() const override
|
||||
{
|
||||
qint64 Size = QFile::size();
|
||||
if (QFileInfo(fileName()).isShortcut())
|
||||
{
|
||||
QFile File(fileName());
|
||||
if (File.open(QFile::ReadOnly))
|
||||
Size = File.size();
|
||||
File.close();
|
||||
}
|
||||
return Size;
|
||||
}
|
||||
|
||||
protected:
|
||||
CSbieProgressPtr m_pProgress;
|
||||
CArchive* m_pArchive;
|
||||
|
|
Loading…
Reference in New Issue