mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
WARNING!!! This revision cannot compile correctly. It is updated to reflect the many changes within the XFX project.
46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
#ifndef _IO_DIRECTORYINFO_
|
|
#define _IO_DIRECTORYINFO_
|
|
|
|
#include "../Types.h"
|
|
#include "FileSystemInfo.h"
|
|
|
|
namespace System
|
|
{
|
|
namespace IO
|
|
{
|
|
/// <summary>
|
|
/// Exposes instance methods for creating, moving, and enumerating through directories and subdirectories. This
|
|
/// class cannot be inherited.
|
|
/// </summary>
|
|
class DirectoryInfo : public FileSystemInfo
|
|
{
|
|
private:
|
|
char* current;
|
|
char* parent;
|
|
|
|
DirectoryInfo();
|
|
|
|
public:
|
|
bool Exists();
|
|
char* Name();
|
|
DirectoryInfo Parent();
|
|
DirectoryInfo Root();
|
|
|
|
DirectoryInfo(const char* path, bool junk);
|
|
|
|
void Create();
|
|
DirectoryInfo CreateSubDirectory(const char* path);
|
|
void Delete();
|
|
void Delete(bool recursive);
|
|
DirectoryInfo *GetDirectories();
|
|
DirectoryInfo *GetDirectories(const char* searchPattern);
|
|
FileSystemInfo *GetFileSystemInfos();
|
|
FileSystemInfo *GetFileSystemInfos(const char* searchPatter);
|
|
void MoveTo(const char* destDirName);
|
|
char* ToString();
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //_IO_DIRECTORYINFO_
|