【基础知识整理】cgi与fastcgi、RAII、dirent、boost::filesystem

基础知识思考整理
http://blog.csdn.net/aganlengzi/article/details/77619062

cgi与fastcgi:
http://www.cnblogs.com/wanghetao/p/3934350.html
RAII:
http://zh.cppreference.com/w/cpp/language/raii

有一个获得给定路径下regular文件名的需求:
环境是Linux。
普遍做法:
https://stackoverflow.com/questions/612097/how-can-i-get-the-list-of-files-in-a-directory-using-c-or-c

http://www.boost.org/doc/libs/1_48_0/libs/filesystem/v3/doc/tutorial.html
https://gist.github.com/vivithemage/9517678
https://github.com/tronkko/dirent windows下的dirent.h

你可能感兴趣的:(基础)