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

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

?? qfileinfo.cpp

?? QT 開發環境里面一個很重要的文件
?? CPP
?? 第 1 頁 / 共 3 頁
字號:
{    if(absPath)        return absoluteDir();    return dir();}#endif //QT3_SUPPORT/*!    Returns true if the user can read the file; otherwise returns false.    \sa isWritable(), isExecutable(), permission()*/boolQFileInfo::isReadable() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->hasAccess(QFileInfoPrivate::ReadAccess);}/*!    Returns true if the user can write to the file; otherwise returns false.    \sa isReadable(), isExecutable(), permission()*/boolQFileInfo::isWritable() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->hasAccess(QFileInfoPrivate::WriteAccess);}/*!    Returns true if the file is executable; otherwise returns false.    \sa isReadable(), isWritable(), permission()*/boolQFileInfo::isExecutable() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->hasAccess(QFileInfoPrivate::ExecuteAccess);}/*!    Returns true if this is a `hidden' file; otherwise returns false.*/boolQFileInfo::isHidden() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->getFileFlags(QAbstractFileEngine::HiddenFlag);}/*!    Returns true if this object points to a file or to a symbolic    link to a file. Returns false if the    object points to something which isn't a file, such as a directory.    \sa isDir(), isSymLink()*/boolQFileInfo::isFile() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->getFileFlags(QAbstractFileEngine::FileType);}/*!    Returns true if this object points to a directory or to a symbolic    link to a directory; otherwise returns false.    \sa isFile(), isSymLink()*/boolQFileInfo::isDir() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->getFileFlags(QAbstractFileEngine::DirectoryType);}/*!    Returns true if this object points to a symbolic link (or to a    shortcut on Windows); otherwise returns false.    On Unix (including Mac OS X), opening a symlink effectively opens    the \l{symLinkTarget()}{link's target}. On Windows, it opens the \c    .lnk file itself.    Example:    \code        QFileInfo info(fileName);        if (info.isSymLink())            fileName = info.symLinkTarget();    \endcode    \sa isFile(), isDir(), symLinkTarget()*/boolQFileInfo::isSymLink() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->getFileFlags(QAbstractFileEngine::LinkType);}/*!  Returns true if the object points to a directory or to a symbolic  link to a directory, and that directory is the root directory; otherwise  returns false.*/boolQFileInfo::isRoot() const{    Q_D(const QFileInfo);    if (!d->data->fileEngine)        return true;    return d->getFileFlags(QAbstractFileEngine::RootFlag);}/*!    \fn QString QFileInfo::symLinkTarget() const    \since 4.2    Returns the absolute path to the file or directory a symlink (or shortcut    on Windows) points to, or a an empty string if the object isn't a symbolic    link.    This name may not represent an existing file; it is only a string.    QFileInfo::exists() returns true if the symlink points to an    existing file.    \sa exists(), isSymLink(), isDir(), isFile()*//*!    \obsolete    Use symLinkTarget() instead.*/QStringQFileInfo::readLink() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->getFileName(QAbstractFileEngine::LinkName);}/*!    Returns the owner of the file. On systems where files    do not have owners, or if an error occurs, an empty string is    returned.    This function can be time consuming under Unix (in the order of    milliseconds).    \sa ownerId(), group(), groupId()*/QStringQFileInfo::owner() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->data->fileEngine->owner(QAbstractFileEngine::OwnerUser);}/*!    Returns the id of the owner of the file.    On Windows and on systems where files do not have owners this    function returns ((uint) -2).    \sa owner(), group(), groupId()*/uintQFileInfo::ownerId() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return 0;    return d->data->fileEngine->ownerId(QAbstractFileEngine::OwnerUser);}/*!    Returns the group of the file. On Windows, on systems where files    do not have groups, or if an error occurs, an empty string is    returned.    This function can be time consuming under Unix (in the order of    milliseconds).    \sa groupId(), owner(), ownerId()*/QStringQFileInfo::group() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QLatin1String("");    return d->data->fileEngine->owner(QAbstractFileEngine::OwnerGroup);}/*!    Returns the id of the group the file belongs to.    On Windows and on systems where files do not have groups this    function always returns (uint) -2.    \sa group(), owner(), ownerId()*/uintQFileInfo::groupId() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return 0;    return d->data->fileEngine->ownerId(QAbstractFileEngine::OwnerGroup);}/*!    Tests for file permissions. The \a permissions argument can be    several flags of type QFile::Permissions OR-ed together to check    for permission combinations.    On systems where files do not have permissions this function    always returns true.    Example:    \code        QFileInfo fi("/tmp/archive.tar.gz");        if (fi.permission(QFile::WriteUser | QFile::ReadGroup))            qWarning("I can change the file; my group can read the file");        if (fi.permission(QFile::WriteGroup | QFile::WriteOther))            qWarning("The group or others can change the file");    \endcode    \sa isReadable(), isWritable(), isExecutable()*/boolQFileInfo::permission(QFile::Permissions permissions) const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return false;    return d->getFileFlags(QAbstractFileEngine::FileFlags((int)permissions)) == (uint)permissions;}/*!    Returns the complete OR-ed together combination of    QFile::Permissions for the file.*/QFile::PermissionsQFileInfo::permissions() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return 0;    return QFile::Permissions(d->getFileFlags(QAbstractFileEngine::PermsMask) & QAbstractFileEngine::PermsMask);}/*!    Returns the file size in bytes. If the file does not exist or cannot be    fetched, 0 is returned.    \sa exists()*/qint64QFileInfo::size() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return 0;    if(!d->data->getCachedFlag(QFileInfoPrivate::CachedSize)) {        d->data->setCachedFlag(QFileInfoPrivate::CachedSize);        d->data->fileSize = d->data->fileEngine->size();    }    return d->data->fileSize;}/*!    Returns the date and time when the file was created.    On most Unix systems, this function returns the time of the last    status change. A status change occurs when the file is created,    but it also occurs whenever the user writes or sets inode    information (for example, changing the file permissions).    If neither creation time nor "last status change" time are not    available, returns the same as lastModified().    \sa lastModified() lastRead()*/QDateTimeQFileInfo::created() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QDateTime();    return d->getFileTime(QAbstractFileEngine::CreationTime);}/*!    Returns the date and time when the file was last modified.    \sa created() lastRead()*/QDateTimeQFileInfo::lastModified() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QDateTime();    return d->getFileTime(QAbstractFileEngine::ModificationTime);}/*!    Returns the date and time when the file was last read (accessed).    On platforms where this information is not available, returns the    same as lastModified().    \sa created() lastModified()*/QDateTimeQFileInfo::lastRead() const{    Q_D(const QFileInfo);    if(!d->data->fileEngine)        return QDateTime();    return d->getFileTime(QAbstractFileEngine::AccessTime);}/*! \internal    Detaches all internal data.*/voidQFileInfo::detach(){    Q_D(QFileInfo);    d->detach();}/*!    Returns true if caching is enabled; otherwise returns false.    \sa setCaching(), refresh()*/bool QFileInfo::caching() const{    Q_D(const QFileInfo);    return d->data->cache_enabled;}/*!    If \a enable is true, enables caching of file information. If \a    enable is false caching is disabled.    When caching is enabled, QFileInfo reads the file information from    the file system the first time it's needed, but generally not    later.    Caching is enabled by default.    \sa refresh(), caching()*/voidQFileInfo::setCaching(bool enable){    Q_D(QFileInfo);    detach();    d->data->cache_enabled = enable;}/*!    \fn QString QFileInfo::baseName(bool complete)    Use completeBaseName() or the baseName() overload that takes no    parameters instead.*//*!    \fn QString QFileInfo::extension(bool complete = true) const    Use completeSuffix() or suffix() instead.*//*!    \fn QString QFileInfo::absFilePath() const    Use absoluteFilePath() instead.*//*!    \fn bool QFileInfo::convertToAbs()    Use makeAbsolute() instead.*//*!    \enum QFileInfo::Permission    \compat    \value ReadOwner    \value WriteOwner    \value ExeOwner    \value ReadUser    \value WriteUser    \value ExeUser    \value ReadGroup    \value WriteGroup    \value ExeGroup    \value ReadOther    \value WriteOther    \value ExeOther*//*!    \fn bool QFileInfo::permission(PermissionSpec permissions) const    \compat    Use permission() instead.*//*!    \typedef QFileInfoList    \relates QFileInfo    Synonym for QList<QFileInfo>.*/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线看国产日韩| 亚洲一区在线观看网站| 一区二区三区四区av| 久久99精品国产.久久久久久| 粉嫩久久99精品久久久久久夜| 欧美久久一区二区| 国产精品国产精品国产专区不蜜 | 国内精品国产三级国产a久久| 91片在线免费观看| 久久这里只精品最新地址| 亚洲狠狠爱一区二区三区| 不卡的av网站| 国产午夜精品久久久久久免费视| 天天综合网 天天综合色| 色狠狠综合天天综合综合| 国产精品天美传媒| 国产美女一区二区| 欧美α欧美αv大片| 亚洲成人自拍偷拍| 欧洲精品一区二区三区在线观看| 日韩一区有码在线| 成人激情视频网站| 国产日产欧美一区二区三区| 精品无码三级在线观看视频| 日韩三级在线观看| 日本成人在线不卡视频| 欧美久久一二三四区| 亚洲mv在线观看| 欧美日韩国产高清一区二区三区 | 亚洲色图19p| 99re这里都是精品| 亚洲女与黑人做爰| 91麻豆免费观看| 亚洲狼人国产精品| 欧美在线不卡一区| 亚洲成a人片在线观看中文| 欧美日韩国产首页在线观看| 亚洲国产综合在线| 欧美日韩dvd在线观看| 日韩精品一二三| 日韩一区二区三区免费看| 久久精品国产一区二区三| 欧美videofree性高清杂交| 精品一区二区三区蜜桃| 久久久精品影视| av亚洲产国偷v产偷v自拍| 亚洲欧美一区二区久久| 欧美日韩国产综合一区二区三区| 亚洲自拍欧美精品| 日韩一区二区免费电影| 国内精品在线播放| 综合婷婷亚洲小说| 欧美日韩电影在线播放| 久久97超碰色| 国产精品三级av| 欧美日韩中文字幕一区二区| 久久爱另类一区二区小说| 国产欧美日韩精品一区| 91精品办公室少妇高潮对白| 免费精品视频最新在线| 国产精品日韩成人| 欧美日韩五月天| 国产高清精品在线| 一区二区三区在线免费播放| 欧美一级精品大片| 成人国产精品免费观看视频| 亚洲va中文字幕| 欧美激情一区二区三区| 欧美性色黄大片| 福利一区二区在线观看| 亚洲一二三四区不卡| 精品久久久久久久久久久久久久久久久 | 91麻豆精品国产无毒不卡在线观看 | 亚洲图片一区二区| 精品国产1区二区| 欧美性猛交xxxxxx富婆| 国产一区三区三区| 亚洲国产成人av| 国产精品丝袜久久久久久app| 欧美亚洲一区二区在线观看| 国产在线精品视频| 亚洲二区视频在线| 日韩理论片中文av| 日韩欧美一区电影| 欧美日韩黄色一区二区| 成人网男人的天堂| 精品一区二区在线观看| 亚洲成人av在线电影| 中文字幕在线一区二区三区| 日韩视频在线永久播放| 欧美综合视频在线观看| 成人网在线免费视频| 国产在线精品免费av| 五月天中文字幕一区二区| 亚洲视频一二区| 国产精品私人影院| 久久久综合视频| 日韩精品中午字幕| 91麻豆精品国产91久久久| 色老头久久综合| jlzzjlzz亚洲日本少妇| 国产成人在线网站| 国产精品一色哟哟哟| 久久精品国产亚洲aⅴ| 美日韩一区二区三区| 丝袜美腿高跟呻吟高潮一区| 夜夜嗨av一区二区三区中文字幕 | 日韩国产精品91| 一区二区三区免费| 亚洲六月丁香色婷婷综合久久 | 久久免费午夜影院| 26uuu亚洲综合色欧美| 精品少妇一区二区三区在线视频| 欧美精品九九99久久| 欧美日产在线观看| 91麻豆精品国产自产在线| 91精品国产麻豆国产自产在线 | 国产无遮挡一区二区三区毛片日本| 日韩免费在线观看| 久久久欧美精品sm网站| 久久精品日产第一区二区三区高清版 | 欧美电视剧在线看免费| 日韩免费成人网| 精品区一区二区| 久久精品一区二区| 国产精品每日更新| 亚洲黄色片在线观看| 午夜精品免费在线| 男女视频一区二区| 国产乱子伦视频一区二区三区 | 久久超级碰视频| 粉嫩一区二区三区在线看| 91一区二区三区在线观看| 91福利视频在线| 91精品国产综合久久蜜臀| 久久亚洲影视婷婷| 亚洲日穴在线视频| 亚洲成人av一区二区| 国产在线播放一区| 一本到高清视频免费精品| 精品视频在线免费看| 2021中文字幕一区亚洲| 欧美国产欧美综合| 亚洲3atv精品一区二区三区| 精品一区二区在线视频| 91免费看片在线观看| 91精品国产福利| 国产精品日韩成人| 青青草精品视频| av激情成人网| 欧美一级专区免费大片| 国产精品久久久久毛片软件| 亚洲一级电影视频| 丁香婷婷综合色啪| 欧美一级片免费看| 亚洲欧美综合色| 毛片av中文字幕一区二区| 99精品国产99久久久久久白柏| 在线播放亚洲一区| 综合欧美一区二区三区| 韩国午夜理伦三级不卡影院| 在线观看一区日韩| 欧美极品aⅴ影院| 日本美女一区二区三区视频| 成人午夜av影视| 精品电影一区二区| 日本在线观看不卡视频| 91热门视频在线观看| 国产欧美精品一区| 美女任你摸久久| 欧美日韩久久一区| 亚洲欧洲中文日韩久久av乱码| 国产在线视视频有精品| 5858s免费视频成人| 中文字幕一区二区日韩精品绯色 | 亚洲电影欧美电影有声小说| 成人午夜免费电影| 精品国产一区二区精华| 午夜视频在线观看一区| 色综合亚洲欧洲| 国产精品美女视频| 国产精品影音先锋| 日韩美女天天操| 青青国产91久久久久久 | 色综合天天性综合| 国产日韩精品一区二区三区| 久久99精品久久久久久| 91精品国产色综合久久久蜜香臀| 亚洲美女淫视频| 99精品视频一区| 国产精品美女久久久久久久网站| 国产精品主播直播| 久久九九影视网| 福利一区福利二区| 国产精品五月天| a美女胸又www黄视频久久| 中文字幕中文字幕在线一区| av福利精品导航| 亚洲三级免费观看| 色美美综合视频|