diff options
Diffstat (limited to 'Source/kwsys/SystemTools.hxx.in')
-rw-r--r-- | Source/kwsys/SystemTools.hxx.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/kwsys/SystemTools.hxx.in b/Source/kwsys/SystemTools.hxx.in index 568643b..4845851 100644 --- a/Source/kwsys/SystemTools.hxx.in +++ b/Source/kwsys/SystemTools.hxx.in @@ -270,9 +270,12 @@ public: static kwsys_stl::string ConvertToWindowsOutputPath(const char*); /** - * Return true if a file exists in the current directory + * Return true if a file exists in the current directory. + * If isFile = true, then make sure the file is a file and + * not a directory. If isFile = false, then return true + * if it is a file or a directory. */ - static bool FileExists(const char* filename); + static bool FileExists(const char* filename, bool isFile=false); /** * Return file length |