2017-10-12 88 views
1

在Linux C++中,WIN32_FIND_DATA等效於什麼?在Linux C++中相當於WIN32_FIND_DATA

WIN32_FIND_DATA fileInfo; 

WIN32_FIND_DATA是Windows規範的數據類型。

當我用C++ 11更改爲Linux Centos 7時,我需要找到它的等價物,因爲WIN32_FIND_DATA中有幾種方法在Linux中不支持。

fileInfo.cFileName 
+0

[如何列出C程序中的目錄中的文件?]的可能重複(https://stackoverflow.com/questions/4204666/how-to-list-files-in-a-directory-in-ac -程序) – vasek

回答

1

定義爲stat結構:(其最接近你需要什麼)

struct stat { 
    dev_t  st_dev;  /* ID of device containing file */ 
    ino_t  st_ino;  /* inode number */ 
    mode_t st_mode; /* protection */ 
    nlink_t st_nlink; /* number of hard links */ 
    uid_t  st_uid;  /* user ID of owner */ 
    gid_t  st_gid;  /* group ID of owner */ 
    dev_t  st_rdev; /* device ID (if special file) */ 
    off_t  st_size; /* total size, in bytes */ 
    blksize_t st_blksize; /* blocksize for file system I/O */ 
    blkcnt_t st_blocks; /* number of 512B blocks allocated */ 
    time_t st_atime; /* time of last access */ 
    time_t st_mtime; /* time of last modification */ 
    time_t st_ctime; /* time of last status change */ 
}; 

否則,您必須從頭開始建立它和GNU Core Utils可以提供幫助。

2

C++ 17有filesystem

例子:

#include <filesystem> 
namespace fs = std::filesystem; 

int main() 
{ 
    fs::path p { "/usr/lib/" }; 
    for (auto& entry : p) 
    { 
     // do something with entry 
    } 

    return 0; 
} 

它是基於從Boost庫文件系統的功能,您可以使用與舊的編譯器。