misc/quazip/quazipnewinfo.cpp
branchphysfslayer
changeset 8055 04dd8b7fb605
parent 8052 845b5ae03841
child 8056 d5d5e1698554
child 8057 93e16240f178
equal deleted inserted replaced
8052:845b5ae03841 8055:04dd8b7fb605
     1 /*
       
     2 Copyright (C) 2005-2011 Sergey A. Tachenov
       
     3 
       
     4 This program is free software; you can redistribute it and/or modify it
       
     5 under the terms of the GNU Lesser General Public License as published by
       
     6 the Free Software Foundation; either version 2 of the License, or (at
       
     7 your option) any later version.
       
     8 
       
     9 This program is distributed in the hope that it will be useful, but
       
    10 WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
       
    12 General Public License for more details.
       
    13 
       
    14 You should have received a copy of the GNU Lesser General Public License
       
    15 along with this program; if not, write to the Free Software Foundation,
       
    16 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
       
    17 
       
    18 See COPYING file for the full LGPL text.
       
    19 
       
    20 Original ZIP package is copyrighted by Gilles Vollant, see
       
    21 quazip/(un)zip.h files for details, basically it's zlib license.
       
    22 */
       
    23 
       
    24 #include <QFileInfo>
       
    25 
       
    26 #include "quazipnewinfo.h"
       
    27 
       
    28 
       
    29 QuaZipNewInfo::QuaZipNewInfo(const QString& name):
       
    30   name(name), dateTime(QDateTime::currentDateTime()), internalAttr(0), externalAttr(0)
       
    31 {
       
    32 }
       
    33 
       
    34 QuaZipNewInfo::QuaZipNewInfo(const QString& name, const QString& file):
       
    35   name(name), internalAttr(0), externalAttr(0)
       
    36 {
       
    37   QFileInfo info(file);
       
    38   QDateTime lm = info.lastModified();
       
    39   if (!info.exists())
       
    40     dateTime = QDateTime::currentDateTime();
       
    41   else
       
    42     dateTime = lm;
       
    43 }
       
    44 
       
    45 void QuaZipNewInfo::setFileDateTime(const QString& file)
       
    46 {
       
    47   QFileInfo info(file);
       
    48   QDateTime lm = info.lastModified();
       
    49   if (info.exists())
       
    50     dateTime = lm;
       
    51 }