python glob 関数と同等の ac/cpp のみのパッケージを知っている人はいますか?
基本的に、私はこのようなものを探しています:
string startDirectory = "c:\foo\bar\*.txt"
vector<string> filename_list = getFilenameList(startDirectory)
注: Python には、これを行うための非常に便利な方法があります。
glob(startDirectory)
注: Windows と Linuxで動作し、ブーストがない実装を探しています- 標準の c++,c だけです。