ksavefile.cpp
来自「将konqueror浏览器移植到ARM9 2410中」· C++ 代码 · 共 99 行
CPP
99 行
/* This file is part of the KDE libraries Copyright (c) 1999 Waldo Bastian <bastian@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.*/#include <config.h>#include <sys/types.h>#ifdef HAVE_SYS_STAT_H#include <sys/stat.h>#endif#include <unistd.h>#include <fcntl.h>#ifdef HAVE_TEST#include <test.h>#endif#include <qdatetime.h>#include <qdir.h>#include "kapp.h"#include "ksavefile.h"KSaveFile::KSaveFile(const QString &filename, int mode) : mTempFile(true) { // we only check here if the directory can be written to // the actual filename isn't written to, but replaced later // with the contents of our tempfile if (!checkAccess(filename, W_OK)) { mTempFile.setError(EACCES); return; } if (mTempFile.create(filename, QString::fromLatin1(".new"), mode)) { mFileName = filename; // Set filename upon success } return;}KSaveFile::~KSaveFile(){ close();}QString KSaveFile::name(){ return mFileName;}voidKSaveFile::abort(){ mTempFile.unlink(); mTempFile.close();}boolKSaveFile::close(){ if (mTempFile.name().isEmpty()) return false; // Save was aborted already if (mTempFile.close()) { QDir dir; bool result = dir.rename( mTempFile.name(), mFileName); if ( result ) { return true; // Success! } mTempFile.setError(errno); } // Something went wrong, make sure to delete the interim file. mTempFile.unlink(); return false;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?