Added functions to filesystem header

This commit is contained in:
Matt Hill
2014-12-06 17:29:06 -05:00
parent 6eacec7750
commit 063aa8b3f1

View File

@@ -11,6 +11,7 @@
#include <unistd.h>
#endif
#include <sys/stat.h>
#include <fstream>
#include <iostream>
#include <stdio.h>
@@ -26,6 +27,9 @@ namespace alpr
std::string filenameWithoutExtension(std::string filename);
long getFileSize(std::string filename);
long getFileCreationTime(std::string filename);
bool DirectoryExists( const char* pzPath );
bool fileExists( const char* pzPath );
std::vector<std::string> getFilesInDir(const char* dirPath);