14

如何确定文件是否包含在 boost 文件系统 v3 的路径中。

我看到有一个较小或较大的运算符,但这似乎只是词汇。我看到的最好的方法是:

  • 取文件的两个绝对路径和路径
  • 删除文件的最后一部分,看看它是否等于路径(如果它包含)

有没有更好的方法来做到这一点?

4

2 回答 2

18

以下函数应确定文件名是否位于给定目录中的某个位置,无论是作为直接子目录还是在某个子目录中。

bool path_contains_file(path dir, path file)
{
  // If dir ends with "/" and isn't the root directory, then the final
  // component returned by iterators will include "." and will interfere
  // with the std::equal check below, so we strip it before proceeding.
  if (dir.filename() == ".")
    dir.remove_filename();
  // We're also not interested in the file's name.
  assert(file.has_filename());
  file.remove_filename();

  // If dir has more components than file, then file can't possibly
  // reside in dir.
  auto dir_len = std::distance(dir.begin(), dir.end());
  auto file_len = std::distance(file.begin(), file.end());
  if (dir_len > file_len)
    return false;

  // This stops checking when it reaches dir.end(), so it's OK if file
  // has more directory components afterward. They won't be checked.
  return std::equal(dir.begin(), dir.end(), file.begin());
}

如果您只想检查目录是否是文件的直接父目录,请改用:

bool path_directly_contains_file(path dir, path file)
{
  if (dir.filename() == ".")
    dir.remove_filename();
  assert(file.has_filename());
  file.remove_filename();

  return dir == file;
}

您可能还对关于路径的“相同”意味着什么的讨论感兴趣。operator==

于 2013-03-21T14:13:14.847 回答
7

如果你只是想在词法上检查一个是否是另一个的前缀,path而不用担心或符号链接,你可以使用这个:...

bool path_has_prefix(const path & path, const path & prefix)
{
    auto pair = std::mismatch(path.begin(), path.end(), prefix.begin(), prefix.end());
    return pair.second == prefix.end();
}

请注意,std::mismatch此处使用的四个参数重载直到 C++14 才添加。

当然,如果您想要的不仅仅是路径的严格词法比较,您可以在其中一个或两个参数上调用lexically_normal()or 。canonical()

于 2018-12-13T18:56:11.893 回答