Update path.h

Add spaces, fix title case, change some wording
This commit is contained in:
Derek "Turtle" Roe 2021-03-16 18:04:56 -05:00
parent 1e70f0b727
commit 4723dd0db9
1 changed files with 16 additions and 16 deletions

View File

@ -15,7 +15,7 @@ public:
enum
{
FIND_ATTRIBUTE_ALLFILES = 0xFFFF, // Search Include all files
FIND_ATTRIBUTE_ALLFILES = 0xFFFF, // Search include all files
FIND_ATTRIBUTE_FILES = 0x0000, // File can be read or written to without restriction
FIND_ATTRIBUTE_SUBDIR = 0x0010, // Subdirectories
};
@ -117,7 +117,7 @@ public:
bool IsDirectory() const;
bool DirectoryExists() const;
//File Information
// File information
bool IsFile() const { return !IsDirectory(); }
bool Exists() const;
#ifdef _WIN32
@ -145,7 +145,7 @@ public:
#endif
private:
//Setup & Cleanup
// Setup and cleanup
inline void Init();
inline void Exit();