diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-01-03 19:37:34 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-01-03 19:37:34 +0100 |
commit | 52643bec17df4e36a9bd27183886e2c0c7a8ebd8 (patch) | |
tree | 6a989a09519b7c706404c4dcd7bb2b6ed7ab6883 /apt-pkg/contrib/fileutl.h | |
parent | 6355a02fbfa1cffa9291095ede32c35737ed7419 (diff) |
Add a GetListOfFilesInDir() helper method which replaces the old
code copies used to load the various parts-files
Diffstat (limited to 'apt-pkg/contrib/fileutl.h')
-rw-r--r-- | apt-pkg/contrib/fileutl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apt-pkg/contrib/fileutl.h b/apt-pkg/contrib/fileutl.h index 73b5ea3be..3cbf67fbb 100644 --- a/apt-pkg/contrib/fileutl.h +++ b/apt-pkg/contrib/fileutl.h @@ -23,6 +23,7 @@ #include <string> +#include <vector> using std::string; @@ -81,6 +82,8 @@ bool RunScripts(const char *Cnf); bool CopyFile(FileFd &From,FileFd &To); int GetLock(string File,bool Errors = true); bool FileExists(string File); +std::vector<string> GetListOfFilesInDir(string const &Dir, string const &Ext, + bool const &SortList); string SafeGetCWD(); void SetCloseExec(int Fd,bool Close); void SetNonBlock(int Fd,bool Block); |