XCode C++ 缺少精子()

2024-01-23

我正在使用 C++ 和 XCode 创建一个命令行应用程序来保存文件权限,但是我无法识别精子()方法,错误是

'使用未声明的标识符'精子'

我的包含内容和有问题的代码如下......

// My includes ...
#include <iostream>
#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
#include <vector>
#include <sys/stat.h>
#include <dirent.h>
#include <pwd.h>
#include <grp.h>
#include <time.h>
#include <locale.h>
#include <langinfo.h>
#include <stdint.h>

// Code fragment ...

dp = opendir ("/var/someplace");
if (dp != NULL)
{
    while ((ep = readdir (dp)))
    {

        oFile = new FileObject;

        oFile->setName( ep->d_name );
        oFile->setIsDirectory( ep->d_type == isFolder );

        oFiles.push_back (*oFile);            
        // If it's a folder then we can get it's innards 

        if (stat(ep->d_name, &statbuf) == -1)
            continue;
        cout << "%10.10s", sperm(statbuf.st_mode);

        iFile++;
    }



    closedir (dp);
}
else
    perror ("Couldn't open the directory");

这可能会让我看起来像个变态,但我在谷歌上搜索了“精子”(当然只搜索了 .h 和 .cpp 文件)。 坏消息是我找不到任何对它的引用(除了统计函数 http://pubs.opengroup.org/onlinepubs/007904975/functions/stat.html页面本身)。

好消息是我发现了定义它自己的“精子”功能的代码:

char const * sperm(__mode_t mode) {
    static char local_buff[16] = {0};
    int i = 0;
    // user permissions
    if ((mode & S_IRUSR) == S_IRUSR) local_buff[i] = 'r';
    else local_buff[i] = '-';
    i++;
    if ((mode & S_IWUSR) == S_IWUSR) local_buff[i] = 'w';
    else local_buff[i] = '-';
    i++;
    if ((mode & S_IXUSR) == S_IXUSR) local_buff[i] = 'x';
    else local_buff[i] = '-';
    i++;
    // group permissions
    if ((mode & S_IRGRP) == S_IRGRP) local_buff[i] = 'r';
    else local_buff[i] = '-';
    i++;
    if ((mode & S_IWGRP) == S_IWGRP) local_buff[i] = 'w';
    else local_buff[i] = '-';
    i++;
    if ((mode & S_IXGRP) == S_IXGRP) local_buff[i] = 'x';
    else local_buff[i] = '-';
    i++;
    // other permissions
    if ((mode & S_IROTH) == S_IROTH) local_buff[i] = 'r';
    else local_buff[i] = '-';
    i++;
    if ((mode & S_IWOTH) == S_IWOTH) local_buff[i] = 'w';
    else local_buff[i] = '-';
    i++;
    if ((mode & S_IXOTH) == S_IXOTH) local_buff[i] = 'x';
    else local_buff[i] = '-';
    return local_buff;
}

用法很简单:

#include <sys/types.h>
#include <sys/stat.h>
#include <iostream>

int main(int argc, char ** argv)
{
    std::cout<<sperm(S_IRUSR | S_IXUSR | S_IWGRP | S_IROTH)<<std::endl;
    std::cout<<sperm(S_IRUSR)<<std::endl;
    std::cout<<sperm(S_IRUSR | S_IRGRP | S_IWOTH | S_IROTH)<<std::endl;
    return 0;
}

输出开ideone http://ideone.com/C9USp:

r-x-w-r--
r--------
r--r--rw-
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

XCode C++ 缺少精子() 的相关文章

随机推荐