directory_scanner.h

Go to the documentation of this file.
00001 /*
00002 **  ClanLib SDK
00003 **  Copyright (c) 1997-2009 The ClanLib Team
00004 **
00005 **  This software is provided 'as-is', without any express or implied
00006 **  warranty.  In no event will the authors be held liable for any damages
00007 **  arising from the use of this software.
00008 **
00009 **  Permission is granted to anyone to use this software for any purpose,
00010 **  including commercial applications, and to alter it and redistribute it
00011 **  freely, subject to the following restrictions:
00012 **
00013 **  1. The origin of this software must not be misrepresented; you must not
00014 **     claim that you wrote the original software. If you use this software
00015 **     in a product, an acknowledgment in the product documentation would be
00016 **     appreciated but is not required.
00017 **  2. Altered source versions must be plainly marked as such, and must not be
00018 **     misrepresented as being the original software.
00019 **  3. This notice may not be removed or altered from any source distribution.
00020 **
00021 **  Note: Some of the libraries ClanLib may link to may have additional
00022 **  requirements or restrictions.
00023 **
00024 **  File Author(s):
00025 **
00026 **    Magnus Norddahl
00027 **    (if your name is missing here, please add it)
00028 */
00029 
00032 
00033 #pragma once
00034 
00035 #include "../api_core.h"
00036 #include "../System/sharedptr.h"
00037 #include "../Text/string_types.h"
00038 
00039 class CL_DirectoryScanner_Impl;
00040 
00057 class CL_API_CORE CL_DirectoryScanner
00058 {
00061 
00062 public:
00064         CL_DirectoryScanner();
00065 
00069         CL_DirectoryScanner(const CL_DirectoryScanner &copy);
00070 
00072         ~CL_DirectoryScanner();
00073 
00077 
00078 public:
00080 
00081         CL_String get_directory_path();
00082 
00084 
00085         CL_String get_name();
00086 
00088 
00089         int get_size();
00090 
00092 
00093         CL_String get_pathname();
00094 
00096 
00097         bool is_directory();
00098 
00100 
00101         bool is_hidden();
00102 
00104 
00105         bool is_readable();
00106 
00108 
00109         bool is_writable();
00110 
00114 
00115 public:
00117 
00120         bool scan(const CL_String& pathname);
00121 
00123 
00129         bool scan(const CL_String& pathname, const CL_String& pattern);
00130 
00132 
00133         bool next();
00134 
00138 
00139 private:
00140         CL_SharedPtr<CL_DirectoryScanner_Impl> impl;
00142 };
00143 

Generated on Thu Dec 3 02:39:28 2009 for ClanLib by  doxygen 1.4.6