在 C++ 中取得檔案副檔名有兩種方法:使用字串運算子 std::find 尋找副檔名分隔符號。使用 Boost 函式庫中的 boost::filesystem::path 類別中的 extension 函數。
如何在C++ 中取得檔案副檔名
在C++ 中取得檔案副檔名可以幫助你:
方法一:使用字串運算
你可以使用標準函式庫函數std::find
來找出檔案路徑中的最後一點(即副檔名分隔符號)。
#include <iostream> #include <string> std::string get_file_extension(const std::string& filename) { auto last_dot = filename.find_last_of('.'); if (last_dot == std::string::npos) { return ""; // 没有扩展名 } return filename.substr(last_dot + 1); } int main() { std::string filename = "example.txt"; std::cout << "File extension: " << get_file_extension(filename) << std::endl; return 0; }
方法二:使用boost::filesystem
#如果你使用的是Boost 函式庫,可以使用boost::filesystem ::path
類別中的extension
函數。
#include <boost/filesystem.hpp> std::string get_file_extension(const std::string& filename) { boost::filesystem::path path(filename); return path.extension().string(); } int main() { std::string filename = "example.txt"; std::cout << "File extension: " << get_file_extension(filename) << std::endl; return 0; }
以上是如何使用C++取得檔案副檔名?的詳細內容。更多資訊請關注PHP中文網其他相關文章!