<tfoot id='bYT3M'></tfoot>

  • <i id='bYT3M'><tr id='bYT3M'><dt id='bYT3M'><q id='bYT3M'><span id='bYT3M'><b id='bYT3M'><form id='bYT3M'><ins id='bYT3M'></ins><ul id='bYT3M'></ul><sub id='bYT3M'></sub></form><legend id='bYT3M'></legend><bdo id='bYT3M'><pre id='bYT3M'><center id='bYT3M'></center></pre></bdo></b><th id='bYT3M'></th></span></q></dt></tr></i><div id='bYT3M'><tfoot id='bYT3M'></tfoot><dl id='bYT3M'><fieldset id='bYT3M'></fieldset></dl></div>

    1. <small id='bYT3M'></small><noframes id='bYT3M'>

        <bdo id='bYT3M'></bdo><ul id='bYT3M'></ul>
        <legend id='bYT3M'><style id='bYT3M'><dir id='bYT3M'><q id='bYT3M'></q></dir></style></legend>

        在 C++ 中检查文件是否存在的最佳方法是什么?(跨平台)

        What’s the best way to check if a file exists in C++? (cross platform)(在 C++ 中检查文件是否存在的最佳方法是什么?(跨平台))
          <tbody id='H9FNu'></tbody>
        <legend id='H9FNu'><style id='H9FNu'><dir id='H9FNu'><q id='H9FNu'></q></dir></style></legend>

          1. <small id='H9FNu'></small><noframes id='H9FNu'>

              <tfoot id='H9FNu'></tfoot>
                <bdo id='H9FNu'></bdo><ul id='H9FNu'></ul>
              • <i id='H9FNu'><tr id='H9FNu'><dt id='H9FNu'><q id='H9FNu'><span id='H9FNu'><b id='H9FNu'><form id='H9FNu'><ins id='H9FNu'></ins><ul id='H9FNu'></ul><sub id='H9FNu'></sub></form><legend id='H9FNu'></legend><bdo id='H9FNu'><pre id='H9FNu'><center id='H9FNu'></center></pre></bdo></b><th id='H9FNu'></th></span></q></dt></tr></i><div id='H9FNu'><tfoot id='H9FNu'></tfoot><dl id='H9FNu'><fieldset id='H9FNu'></fieldset></dl></div>
                1. 本文介绍了在 C++ 中检查文件是否存在的最佳方法是什么?(跨平台)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我已阅读检查 C 中是否存在文件的最佳方法是什么?(跨平台),但我想知道是否有更好的方法使用标准 C++ 库来做到这一点?最好不要尝试打开文件.

                  I have read the answers for What's the best way to check if a file exists in C? (cross platform), but I'm wondering if there is a better way to do this using standard c++ libs? Preferably without trying to open the file at all.

                  stataccess 几乎都无法通过 Google 搜索.我应该怎样#include 来使用这些?

                  Both stat and access are pretty much ungoogleable. What should I #include to use these?

                  推荐答案

                  使用 boost::filesystem:

                  #include <boost/filesystem.hpp>
                  
                  if ( !boost::filesystem::exists( "myfile.txt" ) )
                  {
                    std::cout << "Can't find my file!" << std::endl;
                  }
                  

                  这篇关于在 C++ 中检查文件是否存在的最佳方法是什么?(跨平台)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?(静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么?)
                  How do I load a C DLL from the SXS in Python?(如何从 Python 中的 SXS 加载 C DLL?)
                  Can Cython code be compiled to a dll so C++ application can call it?(Cython 代码可以编译成 dll 以便 C++ 应用程序可以调用它吗?)
                  Delay Loading DLLs(延迟加载 DLL)
                  Throwing C++ exceptions across DLL boundaries(跨 DLL 边界抛出 C++ 异常)
                  Loading a dll from a dll?(从 dll 加载 dll?)
                    <bdo id='4LaqW'></bdo><ul id='4LaqW'></ul>

                          <tbody id='4LaqW'></tbody>
                        <tfoot id='4LaqW'></tfoot>
                        <legend id='4LaqW'><style id='4LaqW'><dir id='4LaqW'><q id='4LaqW'></q></dir></style></legend>

                        <small id='4LaqW'></small><noframes id='4LaqW'>

                            <i id='4LaqW'><tr id='4LaqW'><dt id='4LaqW'><q id='4LaqW'><span id='4LaqW'><b id='4LaqW'><form id='4LaqW'><ins id='4LaqW'></ins><ul id='4LaqW'></ul><sub id='4LaqW'></sub></form><legend id='4LaqW'></legend><bdo id='4LaqW'><pre id='4LaqW'><center id='4LaqW'></center></pre></bdo></b><th id='4LaqW'></th></span></q></dt></tr></i><div id='4LaqW'><tfoot id='4LaqW'></tfoot><dl id='4LaqW'><fieldset id='4LaqW'></fieldset></dl></div>