Welcome to mirror list, hosted at ThFree Co, Russian Federation.

platform_helpers.cpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f092c5ffb4534a3e972ab7a7bbd37f8c36e871d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "generator/platform_helpers.hpp"

#include "platform/platform.hpp"

#include "base/file_name_utils.hpp"

#include "defines.hpp"

namespace generator
{
namespace platform_helpers
{
std::vector<std::string> GetFullFilePathsByExt(std::string const & dir, std::string const & ext)
{
  std::vector<std::string> result;
  Platform::GetFilesByExt(dir, ext, result);
  for (auto & p : result)
    p = base::JoinPath(dir, p);

  return result;
}

std::vector<std::string> GetFullDataTmpFilePaths(std::string const & dir)
{
  return GetFullFilePathsByExt(dir, DATA_FILE_EXTENSION_TMP);
}
}  // namespace platform_helpers
}  // namespace generator