linux 下opendir readdir 在windows下的替代函数

转自:http://blog.csdn.net/killerzhou/article/details/2301359

最近在做一个linux下c程序到windows下的移植工程,在移植过程中发现windows下对opendir readdir存在很大问题,经多方查找,终于在http://www.tenouk.com/cpluscodesnippet/viewtopic.php?t=670上找到了解决办法,利用_chdir,_findfist,_findnext函数,很轻松的完成了移植工作。

现把上面链接的程序贴过来,

To show: Using _chdir(), ctime()/ctime_s(), _findfirst(), _findnext(), _findclose() 

Code:
/* The use of the 32-bit _find functions to print a list 
   of all files (and their attributes) in the current directory. */ 
/* Don't forget to put the .h extension to the header files */ 
#include  
#include  
#include  
#include

你可能感兴趣的:(C++)