mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 00:03:03 +04:00
improved some methods in the Directory class
This commit is contained in:
@@ -609,9 +609,9 @@ namespace cv
|
||||
class CV_EXPORTS Directory
|
||||
{
|
||||
public:
|
||||
static std::vector<std::string> GetListFiles ( const string& directoryName, bool addPath = true );
|
||||
static std::vector<std::string> GetListFilesR ( const string& directoryName, bool addPath = true );
|
||||
static std::vector<std::string> GetListFolders( const string& directoryName, bool addPath = true );
|
||||
static std::vector<std::string> GetListFiles ( const std::string& path, const std::string & exten = "*", bool addPath = true );
|
||||
static std::vector<std::string> GetListFilesR ( const std::string& path, const std::string & exten = "*", bool addPath = true );
|
||||
static std::vector<std::string> GetListFolders( const std::string& path, const std::string & exten = "*", bool addPath = true );
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user