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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? file.h

?? This software aims to create an applet and panel tools to manage a wireless interface card, such as
?? H
字號(hào):
//
// File.h
//
// $Id: //poco/Main/Foundation/include/Foundation/File.h#5 $
//
// Definition of the File class.
//
// Copyright (c) 2004, Guenter Obiltschnig/Applied Informatics.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright
//    notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
//    notice, this list of conditions and the following disclaimer in the
//    documentation and/or other materials provided with the distribution.
//
// 3. Redistributions in any form must be accompanied by information on
//    how to obtain complete source code for this software and any
//    accompanying software that uses this software.  The source code
//    must either be included in the distribution or be available for no
//    more than the cost of distribution plus a nominal fee, and must be
//    freely redistributable under reasonable conditions.  For an
//    executable file, complete source code means the source code for all
//    modules it contains.  It does not include source code for modules or
//    files that typically accompany the major components of the operating
//    system on which the executable file runs.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//


#ifndef Foundation_File_INCLUDED
#define Foundation_File_INCLUDED


#ifndef Foundation_Foundation_INCLUDED
#include "Foundation/Foundation.h"
#endif
#ifndef Foundation_Timestamp_INCLUDED
#include "Foundation/Timestamp.h"
#endif
#ifndef STD_VECTOR_INCLUDED
#include <vector>
#define STD_VECTOR_INCLUDED
#endif


#if defined(POCO_OS_FAMILY_WINDOWS)
#include "Foundation/File_WIN32.h"
#elif defined(POCO_OS_FAMILY_UNIX)
#include "Foundation/File_UNIX.h"
#else
#include "Foundation/File_VMS.h"
#endif


Foundation_BEGIN


class Path;


class Foundation_API File: private FileImp
	/// The File class provides methods for working with a file.
{
public:
	typedef FileSizeImp FileSize;

	File();
		/// Creates the file.

	File(const std::string& path);
		/// Creates the file.
		
	File(const char* path);
		/// Creates the file.

	File(const Path& path);
		/// Creates the file.
		
	File(const File& file);
		/// Copy constructor.

	virtual ~File();
		/// Destroys the file.
	
	File& operator = (const File& file);
		/// Assignment operator.

	File& operator = (const std::string& path);
		/// Assignment operator.

	File& operator = (const char* path);
		/// Assignment operator.

	File& operator = (const Path& path);
		/// Assignment operator.

	const std::string& path() const;
		/// Returns the path.
	
	bool exists() const;
		/// Returns true iff the file exists.
		
	bool canRead() const;
		/// Returns true iff the file is readable.
		
	bool canWrite() const;
		/// Returns true iff the file is writeable.
		
	bool isFile() const;
		/// Returns true iff the file is a regular file.
		
	bool isDirectory() const;
		/// Returns true iff the file is a directory.
	
	Timestamp created() const;
		/// Returns the creation date of the file.

	Timestamp getLastModified() const;
		/// Returns the modification date of the file.
		
	void setLastModified(const Timestamp& ts);
		/// Sets the modification date of the file.
		
	FileSize getSize() const;
		/// Returns the size of the file in bytes.
		
	void setSize(FileSize size);
		/// Sets the size of the file in bytes. Can be used
		/// to truncate a file.
		
	void setWriteable(bool flag = true);
		/// Makes the file writeable (if flag is true), or
		/// non-writeable (if flag is false) by setting the
		/// file's flags in the filesystem accordingly.
		
	void setReadOnly(bool flag = true);
		/// Makes the file non-writeable (if flag is true), or
		/// writeable (if flag is false) by setting the
		/// file's flags in the filesystem accordingly.
		
	void copyTo(const std::string& path) const;
		/// Copies the file to the given path. The target path
		/// can be a directory.

	void moveTo(const std::string& path);
		/// Copies the file to the given path and removes the
		/// original file. The target path can be a directory.
		
	void renameTo(const std::string& path);
		/// Renames the file to the new name.
		
	void remove(bool recursive = false);
		/// Deletes the file. If recursive is true and the
		/// file is a directory, recursively deletes all
		/// files in the directory.
	
	bool createFile();
		/// Creates a new, empty file in an atomic operation.
		/// Returns true if the file has been created and false
		/// if the file already exists. Throws an exception if
		/// an error occurs.
	
	bool createDirectory();
		/// Creates a directory. Returns true if the directory
		/// has been created and false if it already exists.
		/// Throws an exception if an error occurs.
	
	void createDirectories();
		/// Creates a directory (and all parent directories
		/// if necessary).
		
	void list(std::vector<std::string>& files) const;
		/// Fills the vector with the names of all
		/// files in the directory.

	void list(std::vector<File>& files) const;
		/// Fills the vector with the names of all
		/// files in the directory.

	bool operator == (const File& file) const;
	bool operator != (const File& file) const;
	bool operator <  (const File& file) const;
	bool operator <= (const File& file) const;
	bool operator >  (const File& file) const;
	bool operator >= (const File& file) const;
};


//
// inlines
//
inline const std::string& File::path() const
{
	return getPathImp();
}


inline bool File::operator == (const File& file) const
{
	return getPathImp() == file.getPathImp();
}


inline bool File::operator != (const File& file) const
{
	return getPathImp() != file.getPathImp();
}


inline bool File::operator < (const File& file) const
{
	return getPathImp() < file.getPathImp();
}


inline bool File::operator <= (const File& file) const
{
	return getPathImp() <= file.getPathImp();
}


inline bool File::operator > (const File& file) const
{
	return getPathImp() > file.getPathImp();
}


inline bool File::operator >= (const File& file) const
{
	return getPathImp() >= file.getPathImp();
}


Foundation_END


#endif // Foundation_File_INCLUDED

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产拍揄自揄精品视频麻豆| 欧美成人一区二区三区在线观看| 亚洲国产成人午夜在线一区| 国产999精品久久久久久| 国产日产欧美一区| 成人福利电影精品一区二区在线观看| 国产精品丝袜一区| 91啪九色porn原创视频在线观看| 亚洲精品福利视频网站| 在线播放欧美女士性生活| 蜜臀a∨国产成人精品| 久久婷婷色综合| 99久久免费国产| 天堂久久久久va久久久久| 日韩欧美一级片| 成人av动漫在线| 日韩电影网1区2区| 中文字幕电影一区| 欧美伊人精品成人久久综合97| 男男视频亚洲欧美| 欧美国产精品专区| 欧美肥大bbwbbw高潮| 国产传媒欧美日韩成人| 夜色激情一区二区| 精品区一区二区| 91久久精品国产91性色tv | 在线播放91灌醉迷j高跟美女| 日韩av中文字幕一区二区| 中文字幕巨乱亚洲| 在线播放视频一区| 成人av一区二区三区| 日韩成人精品在线观看| 国产精品久久久久婷婷| 6080亚洲精品一区二区| 91亚洲精华国产精华精华液| 六月丁香婷婷久久| 亚洲欧美色图小说| 久久―日本道色综合久久| 欧美日韩在线播放一区| 国产91丝袜在线观看| 日韩精品一级二级| 亚洲激情av在线| 国产精品久久久久久久久动漫| 欧美一区二区不卡视频| 91色九色蝌蚪| 成人美女视频在线看| 美女视频黄免费的久久| 亚洲精品国产a| 国产精品成人在线观看| 久久久久成人黄色影片| 日韩欧美aaaaaa| 欧美日本一区二区三区| 在线视频中文字幕一区二区| 成人在线视频一区二区| 久久爱另类一区二区小说| 午夜精品在线看| 亚洲精品精品亚洲| 中文字幕一区二区三区不卡| 国产欧美日韩在线看| 欧美白人最猛性xxxxx69交| 欧美高清性hdvideosex| 欧美亚洲一区二区在线| 91久久精品一区二区三| 99国产精品99久久久久久| 成人国产亚洲欧美成人综合网| 久久91精品久久久久久秒播| 蜜桃一区二区三区四区| 奇米影视在线99精品| 日韩电影免费在线看| 婷婷国产在线综合| 日本一不卡视频| 视频一区视频二区中文字幕| 三级不卡在线观看| 日本aⅴ亚洲精品中文乱码| 日韩电影在线一区| 久久国产精品一区二区| 狠狠色丁香婷综合久久| 国产一区二区福利视频| 国产精品自拍在线| 成人一区二区三区视频在线观看| 国产精品99久久久久久似苏梦涵| 国产乱对白刺激视频不卡| 国产乱人伦偷精品视频不卡| 国产91综合网| 色美美综合视频| 在线视频你懂得一区二区三区| 在线日韩国产精品| 91精品国产综合久久蜜臀| 日韩一区二区免费在线电影| 欧美不卡一二三| 欧美国产精品一区二区三区| 成人免费在线视频| 一区二区三区欧美视频| 日韩精品电影一区亚洲| 国产在线视视频有精品| 成人免费精品视频| 色香蕉成人二区免费| 欧美日本韩国一区二区三区视频 | 亚洲免费视频成人| 亚洲一级片在线观看| 首页国产丝袜综合| 国产自产视频一区二区三区| 成人在线视频一区| 欧美日韩国产一二三| 久久久久亚洲蜜桃| 一区二区三区在线免费| 久久国内精品视频| 99久久精品一区二区| 欧美日韩国产精品成人| 久久天堂av综合合色蜜桃网| 国产精品女人毛片| 天天操天天干天天综合网| 丁香另类激情小说| 欧美久久久久中文字幕| 亚洲国产精品黑人久久久| 亚洲成人免费在线观看| 国产一区二区三区精品欧美日韩一区二区三区 | 日韩高清不卡一区二区三区| 国产一区二区三区免费播放| 日本精品视频一区二区三区| 精品嫩草影院久久| 曰韩精品一区二区| 久草精品在线观看| 欧美午夜片在线看| 中文字幕欧美三区| 久久精品国产第一区二区三区 | 99在线热播精品免费| 欧美一级片在线看| 亚洲欧洲综合另类在线 | 国产剧情一区在线| 欧美视频在线不卡| 中文字幕综合网| 国产精品亚洲а∨天堂免在线| 欧美日韩一区二区三区视频| 国产精品丝袜一区| 国产一区999| 91麻豆精品国产| 亚洲一区二区三区激情| 波多野洁衣一区| www国产成人| 久久精品国产99久久6| 欧美日韩在线观看一区二区| 亚洲欧美日韩电影| 国产不卡视频在线播放| wwww国产精品欧美| 看片网站欧美日韩| 欧美日韩一区二区在线视频| 又紧又大又爽精品一区二区| 99视频国产精品| 国产欧美一区二区三区在线看蜜臀 | 欧美精品三级日韩久久| 亚洲欧美色一区| 94色蜜桃网一区二区三区| 国产日韩欧美精品一区| 狠狠色丁香婷婷综合久久片| 欧美一级二级在线观看| 婷婷开心久久网| 在线成人小视频| 天堂久久一区二区三区| 欧美久久一二三四区| 亚洲aaa精品| 欧美精品国产精品| 视频一区二区国产| 日韩一区二区三区电影在线观看| 三级久久三级久久| 日韩美女一区二区三区四区| 秋霞影院一区二区| 精品剧情v国产在线观看在线| 免费观看一级特黄欧美大片| 欧美一区二视频| 麻豆精品新av中文字幕| 精品国产乱码久久久久久蜜臀| 日本色综合中文字幕| 日韩欧美国产一区二区三区| 美脚の诱脚舐め脚责91| 精品国产99国产精品| 国产一区二区三区免费观看| 欧美激情中文字幕一区二区| 成人网在线播放| 亚洲乱码国产乱码精品精98午夜| 91在线视频播放| 亚洲成人先锋电影| 欧美成人一级视频| 国产成人夜色高潮福利影视| 国产精品拍天天在线| 欧美伊人久久久久久久久影院 | 亚洲国产成人va在线观看天堂| 欧美欧美欧美欧美首页| 久久精品理论片| 中文字幕不卡的av| 在线观看视频欧美| 美女在线视频一区| 国产精品美女久久久久aⅴ| 欧美在线观看一二区| 男男视频亚洲欧美| 国产精品久久夜| 337p亚洲精品色噜噜| 国产伦精品一区二区三区免费迷| 亚洲欧洲99久久| 91精品国产aⅴ一区二区|