亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? qfileinfo.cpp

?? QT 開發環境里面一個很重要的文件
?? CPP
?? 第 1 頁 / 共 3 頁
字號:
    }    return false;}/*!    Returns true if this QFileInfo object refers to a file in the same    location as \a fileinfo; otherwise returns false.    Note that the result of comparing two empty QFileInfo objects,    containing no file references, is undefined.    \warning This will not compare two different symbolic links    pointing to the same file.    \warning Long and short file names that refer to the same file on Windows    are treated as if they referred to different files.    \sa operator!=()*/bool QFileInfo::operator==(const QFileInfo &fileinfo){    return const_cast<const QFileInfo *>(this)->operator==(fileinfo);}/*!    Makes a copy of the given \a fileinfo and assigns it to this QFileInfo.*/QFileInfo &QFileInfo::operator=(const QFileInfo &fileinfo){    Q_D(QFileInfo);    qAtomicAssign(d->data, fileinfo.d_func()->data);    return *this;}/*!    Sets the file that the QFileInfo provides information about to \a    file.    The \a file can also include an absolute or relative file path.    Absolute paths begin with the directory separator (e.g. "/" under    Unix) or a drive specification (under Windows). Relative file    names begin with a directory name or a file name and specify a    path relative to the current directory.    Example:    \code    QString absolute = "/local/bin";    QString relative = "local/bin";    QFileInfo absFile(absolute);    QFileInfo relFile(relative);    QDir::setCurrent(QDir::rootPath());    // absFile and relFile now point to the same file    QDir::setCurrent("/tmp");    // absFile now points to "/local/bin",    // while relFile points to "/tmp/local/bin"    \endcode    \sa isRelative(), QDir::setCurrent(), QDir::isRelativePath()*/voidQFileInfo::setFile(const QString &file){    Q_D(QFileInfo);    d->initFileEngine(file);}/*!    \overload    Sets the file that the QFileInfo provides information about to \a    file.    If \a file includes a relative path, the QFileInfo will also have    a relative path.    \sa isRelative()*/voidQFileInfo::setFile(const QFile &file){    Q_D(QFileInfo);    d->initFileEngine(file.fileName());}/*!    \overload    Sets the file that the QFileInfo provides information about to \a    file in directory \a dir.    If \a file includes a relative path, the QFileInfo will also    have a relative path.    \sa isRelative()*/voidQFileInfo::setFile(const QDir &dir, const QString &file){    Q_D(QFileInfo);    d->initFileEngine(dir.filePath(file));}/*!    Returns the absolute path including the file name.    The absolute path name consists of the full path and the file    name. On Unix this will always begin with the root, '/',    directory. On Windows this will always begin 'D:/' where D is a    drive letter, except for network shares that are not mapped to a    drive letter, in which case the path will begin '//sharename/'.    This function returns the same as filePath(), unless isRelative()    is true.    If the QFileInfo is empty it returns QDir::currentPath().    This function can be time consuming under Unix (in the order of    milliseconds).    \sa isRelative(), filePath()*/QStringQFileInfo::absoluteFilePath() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::AbsoluteName);}/*!    Returns the canonical path, i.e. a path without symbolic links or    redundant "." or ".." elements.    On systems that do not have symbolic links this function will    always return the same string that absoluteFilePath() returns. If    the canonical path does not exist (normally due to dangling    symbolic links) canonicalFilePath() returns an empty string.    \sa filePath(), absoluteFilePath()*/QStringQFileInfo::canonicalFilePath() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::CanonicalName);}/*!    Returns the file's path absolute path. This doesn't include the    file name.    \sa dir(), filePath(), fileName(), isRelative(), path()*/QStringQFileInfo::absolutePath() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::AbsolutePathName);}/*!    Returns the canonical path, i.e. a path without symbolic links or    redundant "." or ".." elements.    On systems that do not have symbolic links this function will    always return the same string that absolutePath() returns. If the    canonical path does not exist (normally due to dangling symbolic    links) canonicalPath() returns an empty string.    \sa absolutePath()*/QStringQFileInfo::canonicalPath() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::CanonicalPathName);}/*!    Returns the file's path. This doesn't include the file name.    \sa dir(), filePath(), fileName(), isRelative(), absolutePath()*/QStringQFileInfo::path() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::PathName);}/*!    \fn bool QFileInfo::isAbsolute() const    Returns true if the file path name is absolute, otherwise returns    false if the path is relative.    \sa isRelative()*//*!    Returns true if the file path name is relative, otherwise returns    false if the path is absolute (e.g. under Unix a path is absolute    if it begins with a "/").    \sa isAbsolute()*/boolQFileInfo::isRelative() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return true;    return d->data->fileEngine->isRelativePath();}/*!    Converts the file's path to an absolute path if it is not already in that form.    Returns true to indicate that the path was converted; otherwise returns false    to indicate that the path was already absolute.    \sa filePath(), isRelative()*/boolQFileInfo::makeAbsolute(){    Q_D(QFileInfo);    if(!d->data->fileEngine || !d->data->fileEngine->isRelativePath())        return false;    QString absFileName = d->getFileName(QAbstractFileEngine::AbsoluteName);    d->initFileEngine(absFileName);    return true;}/*!    Returns true if the file exists; otherwise returns false.*/boolQFileInfo::exists() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->getFileFlags(QAbstractFileEngine::ExistsFlag);}/*!    Refreshes the information about the file, i.e. reads in information    from the file system the next time a cached property is fetched.*/voidQFileInfo::refresh(){    Q_D(QFileInfo);    d->reset();}/*!    Returns the file name, including the path (which may be absolute    or relative).    \sa isRelative(), absoluteFilePath()*/QStringQFileInfo::filePath() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::DefaultName);}/*!    Returns the name of the file, excluding the path.    Example:    \code        QFileInfo fi("/tmp/archive.tar.gz");        QString name = fi.fileName();                // name = "archive.tar.gz"    \endcode    \sa isRelative(), filePath(), baseName(), extension()*/QStringQFileInfo::fileName() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::BaseName);}/*!    Returns the base name of the file without the path.    The base name consists of all characters in the file up to (but    not including) the \e first '.' character.    Example:    \code        QFileInfo fi("/tmp/archive.tar.gz");        QString base = fi.baseName();  // base = "archive"    \endcode    The base name of a file is computed equally on all platforms, independent    of file naming conventions (e.g., ".bashrc" on Unix has an empty base    name, and the suffix is "bashrc").    \sa fileName(), suffix(), completeSuffix(), completeBaseName()*/QStringQFileInfo::baseName() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::BaseName).section(QLatin1Char('.'), 0, 0);}/*!    Returns the complete base name of the file without the path.    The complete base name consists of all characters in the file up    to (but not including) the \e last '.' character.    Example:    \code        QFileInfo fi("/tmp/archive.tar.gz");        QString base = fi.completeBaseName();  // base = "archive.tar"    \endcode    \sa fileName(), suffix(), completeSuffix(), baseName()*/QStringQFileInfo::completeBaseName() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    QString name = d->getFileName(QAbstractFileEngine::BaseName);    int index = name.lastIndexOf(QLatin1Char('.'));    return (index == -1) ? name : name.left(index);}/*!    Returns the complete suffix of the file.    The complete suffix consists of all characters in the file after    (but not including) the first '.'.    Example:    \code        QFileInfo fi("/tmp/archive.tar.gz");        QString ext = fi.completeSuffix();  // ext = "tar.gz"    \endcode    \sa fileName(), suffix(), baseName(), completeBaseName()*/QStringQFileInfo::completeSuffix() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    QString fileName = d->getFileName(QAbstractFileEngine::BaseName);    int firstDot = fileName.indexOf(QLatin1Char('.'));    if (firstDot == -1)        return QLatin1String("");    return fileName.mid(firstDot + 1);}/*!    Returns the suffix of the file.    The suffix consists of all characters in the file after (but not    including) the last '.'.    Example:    \code        QFileInfo fi("/tmp/archive.tar.gz");        QString ext = fi.suffix();  // ext = "gz"    \endcode    The suffix of a file is computed equally on all platforms, independent of    file naming conventions (e.g., ".bashrc" on Unix has an empty base name,    and the suffix is "bashrc").    \sa fileName(), completeSuffix(), baseName(), completeBaseName()*/QStringQFileInfo::suffix() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    QString fileName = d->getFileName(QAbstractFileEngine::BaseName);    int lastDot = fileName.lastIndexOf(QLatin1Char('.'));    if (lastDot == -1)        return QLatin1String("");    return fileName.mid(lastDot + 1);}/*!    Returns the path of the object's parent directory as a QDir object.    \bold{Note:} The QDir returned always corresponds to the object's parent    directory, even if the QFileInfo represents a directory.    \sa dirPath(), filePath(), fileName(), isRelative(), absoluteDir()*/QDirQFileInfo::dir() const{    return QDir(path());}/*!    Returns the file's absolute path as a QDir object.    \sa filePath(), fileName(), isRelative(), dir()*/QDirQFileInfo::absoluteDir() const{    return QDir(absolutePath());}#ifdef QT3_SUPPORT/*!    Use absoluteDir() or the dir() overload that takes no parameters    instead.*/QDir QFileInfo::dir(bool absPath) const

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美视频在线| 欧美国产日韩a欧美在线观看| 在线综合+亚洲+欧美中文字幕| 欧美精品一区二区三区蜜臀| 一区二区高清在线| av在线不卡网| 精品久久人人做人人爰| 亚洲精品v日韩精品| 粉嫩在线一区二区三区视频| 欧美日韩亚洲综合在线 | 91丝袜美女网| 6080国产精品一区二区| 日韩欧美综合一区| 偷拍与自拍一区| 91官网在线免费观看| 国产精品不卡一区| 成人免费福利片| 亚洲日本在线观看| 久久成人av少妇免费| 欧美日韩不卡在线| 亚洲最新视频在线播放| 91麻豆国产福利精品| 久久亚洲一级片| 国产在线精品一区二区三区不卡| 一本到三区不卡视频| 欧美一区二区性放荡片| 亚洲国产综合91精品麻豆| 色综合久久久网| 亚洲欧美区自拍先锋| 99久久综合色| 亚洲三级在线播放| 日本高清视频一区二区| 亚洲男女一区二区三区| 色婷婷狠狠综合| 亚洲综合激情另类小说区| 91福利区一区二区三区| 亚洲午夜免费视频| 欧美一区在线视频| 免费在线观看日韩欧美| 精品捆绑美女sm三区| 国产成人精品在线看| 欧美国产成人在线| 成人福利视频在线看| 国产精品久久精品日日| 91影院在线观看| 亚洲日本中文字幕区| 欧美日韩亚洲丝袜制服| 日韩激情av在线| 欧美岛国在线观看| 国产一本一道久久香蕉| 日本一区免费视频| 99精品国产91久久久久久 | 色综合夜色一区| 亚洲资源在线观看| 91精品综合久久久久久| 久久草av在线| 亚洲色图一区二区| 7777女厕盗摄久久久| 国产精品一区二区久激情瑜伽| 欧美国产禁国产网站cc| 欧美私人免费视频| 欧美a级理论片| 国产精品理论在线观看| 在线观看亚洲a| 黄色精品一二区| 亚洲美女精品一区| 日韩区在线观看| caoporn国产精品| 亚洲高清三级视频| 久久久亚洲午夜电影| 91蝌蚪porny九色| 久久99国产精品久久| 中文字幕一区二区三区不卡| 欧美欧美欧美欧美首页| 成人av网址在线观看| 日本va欧美va欧美va精品| 国产精品你懂的在线欣赏| 日韩一级精品视频在线观看| av电影天堂一区二区在线| 日韩福利视频导航| 1024精品合集| 久久亚洲影视婷婷| 欧美日本在线视频| 91亚洲国产成人精品一区二三| 日韩国产欧美一区二区三区| ...中文天堂在线一区| 日韩三级在线免费观看| 欧美少妇bbb| 成人精品高清在线| 蜜桃av一区二区| 亚洲综合在线五月| 日本一区二区不卡视频| 日韩三级视频在线观看| 在线观看国产一区二区| 成人a免费在线看| 国产一区二区精品在线观看| 日韩高清一区在线| 亚洲成在人线免费| 一区二区三区精品在线| 国产精品久久久久aaaa樱花| 国产亚洲视频系列| 久久午夜免费电影| 日韩免费看网站| 欧美日韩小视频| 91福利在线免费观看| 成人精品电影在线观看| 国产美女精品人人做人人爽| 美女在线一区二区| 丝袜亚洲另类丝袜在线| 天天操天天干天天综合网| 亚洲一级二级在线| 亚洲三级免费电影| 又紧又大又爽精品一区二区| 亚洲欧美日韩国产综合| 国产精品国模大尺度视频| 中文字幕欧美日本乱码一线二线| 久久久九九九九| 国产欧美日韩在线看| 国产精品欧美一级免费| 国产精品无人区| 国产精品乱码妇女bbbb| 国产精品你懂的在线| 亚洲精品国产精华液| 亚洲综合色丁香婷婷六月图片| 亚洲一区二区高清| 日本成人中文字幕| 麻豆专区一区二区三区四区五区| 免费高清在线视频一区·| 国产在线精品免费| 成人动漫中文字幕| 欧洲亚洲精品在线| 在线播放欧美女士性生活| 日韩欧美国产1| 国产精品系列在线| 18涩涩午夜精品.www| 午夜久久久久久久久| 六月丁香婷婷久久| 国产呦精品一区二区三区网站| 国产剧情av麻豆香蕉精品| 成人性色生活片免费看爆迷你毛片| 91网站最新网址| 欧美精品 日韩| 久久综合九色综合97_久久久| 国产精品剧情在线亚洲| 亚洲国产一区二区在线播放| 久久精品国产99国产| 成人午夜电影久久影院| 欧美中文一区二区三区| 精品国产污网站| 国产精品欧美极品| 亚洲成人久久影院| 国产91在线观看丝袜| 欧洲一区二区三区免费视频| 精品久久久久久亚洲综合网| 欧美国产日韩精品免费观看| 香蕉成人伊视频在线观看| 国产精品亚洲成人| 欧美亚洲自拍偷拍| 欧美激情一区二区三区全黄| 亚洲小说春色综合另类电影| 国产制服丝袜一区| 欧美熟乱第一页| 国产日韩精品一区二区三区在线| 亚洲第一激情av| 成人的网站免费观看| 日韩视频一区二区三区在线播放| 国产精品久久777777| 免费高清视频精品| 色综合久久综合| 久久综合九色综合欧美就去吻 | 麻豆国产欧美一区二区三区| 91视频91自| 国产亚洲福利社区一区| 天堂久久一区二区三区| 91在线国产观看| 久久久精品影视| 麻豆精品精品国产自在97香蕉| 在线观看亚洲一区| 国产精品久线在线观看| 国产一区二区调教| 91精品国产一区二区三区| 一区二区欧美视频| 91香蕉视频mp4| 欧美激情综合五月色丁香小说| 日韩成人精品在线观看| 91国偷自产一区二区三区观看 | 久久在线观看免费| 另类小说欧美激情| 欧美一区二区三区日韩视频| 亚洲一区二区在线视频| 色综合视频一区二区三区高清| 日本一区二区三区dvd视频在线| 蜜桃av一区二区| 欧美一区二区在线视频| 日韩制服丝袜先锋影音| 3d动漫精品啪啪一区二区竹菊| 亚洲国产欧美另类丝袜| 在线观看欧美精品| 亚洲高清不卡在线| 欧美美女网站色|