仿写ls -li 获取某一个路径下的所有文件的文件属性(不用管文件创建者和属组,也不要隐藏文件)

本文主要是介绍仿写ls -li 获取某一个路径下的所有文件的文件属性(不用管文件创建者和属组,也不要隐藏文件),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1》stat: 查看一个文件的属性

#include <sys/types.h>

#include <sys/stat.h>

#include <unistd.h>

int stat(const char *pathname, struct stat *statbuf);

形参:pathname  文件名

statbuf:获取到的文件属性存放的位置

返回值:成功返回0,失败返回-1

struct stat {

dev_t  st_dev; /*如果是设备,返回文件使用的设备号,否则为 0*/

ino_t   st_ino; /* 索引节点号 (i节点)*/

mode_t  st_mode; /* 文件类型,权限 */

nlink_t   st_nlink; /* 文件的硬连接数,如果是目录文件,表示一级子目录个数 */

uid_t    st_uid; /* 所有者用户识别号*/

gid_t   st_gid; /* 组识别号 */

dev_t   st_rdev; /* 设备类型*/

off_t   st_size; /* 文件大小,字节表示 */

blksize_t    st_blksize; /*  系统每次按块Io操作时块的大小(一般是512或1024)*/

blkcnt_t   st_blocks; /*块的索引号 */

time_t    st_atime; /* 最后访问时间,如read*/

time_t    st_mtime; /* 最后修改时间*/

time_t    st_ctime; /* 创建时间 */

};

st_mode  & 下面的宏  !=0  说明有该权限

2》lstat:

int lstat(const char *pathname, struct stat *statbuf);

形参:pathname  文件名

statbuf:获取到的文件属性存放的位置

如果当前文件是链接文件,stat获取的是链接文件原文件的属性;

如果当前文件是链接文件,lstat获取的是链接文件(l),自己的属性;

#include "stdio.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "string.h"
#include <dirent.h>
#include "time.h"
char Fun(mode_t ch);
char *Func(mode_t ch);
int main(int argc,char *argv[])
{struct dirent *q;struct stat p;char path[128] = {0};time_t t = time(NULL);struct tm *w = localtime(&t);if(argc < 2){strcpy(path,".");}else{strcpy(path,argv[1]);}DIR *dir = opendir(path);if(dir == NULL){perror("opendir");return -1;}while(q = readdir(dir)){if(q->d_name[0] == '.')continue;printf("%ld ",q->d_ino);int a = lstat(q->d_name,&p);if(a == -1){perror("lstat");return -1;}printf("%c%s ",Fun(p.st_mode),Func(p.st_mode));printf("%ld %ld ",p.st_nlink,p.st_size);printf("%d月 %d ",w->tm_mon+1,w->tm_mday);printf("%d:%d ",w->tm_hour,w->tm_min);printf("%s\n",q->d_name);}// printf("\n");closedir(dir);return 0;
}char Fun(mode_t ch)
{char a = 0;switch (ch & S_IFMT) {case S_IFBLK: a = 'b';break;case S_IFCHR: a = 'c';break;case S_IFDIR: a = 'd'; break;case S_IFIFO: a = 'p';break;case S_IFLNK: a = 'l';break;case S_IFREG: a = '-';break;case S_IFSOCK:a = 's';break;}return a;
}char *Func(mode_t ch)
{static char buf[10] = {0};strcpy(buf,"---------");if(ch & S_IRUSR){buf[0] = 'r';}if(ch & S_IWUSR){buf[1] = 'w';}if(ch & S_IXUSR){buf[2] = 'x';}if(ch & S_IRGRP){buf[3] = 'r';}if(ch & S_IWGRP){buf[4] = 'w';}if(ch & S_IXGRP){buf[5] = 'x';}if(ch & S_IROTH){buf[6] = 'r';}if(ch & S_IWOTH){buf[7] = 'w';}if(ch & S_IXOTH){buf[8] = 'x';}return buf;
}

这篇关于仿写ls -li 获取某一个路径下的所有文件的文件属性(不用管文件创建者和属组,也不要隐藏文件)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/653210

相关文章

hdu2544(单源最短路径)

模板题: //题意:求1到n的最短路径,模板题#include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#i

poj 1734 (floyd求最小环并打印路径)

题意: 求图中的一个最小环,并打印路径。 解析: ans 保存最小环长度。 一直wa,最后终于找到原因,inf开太大爆掉了。。。 虽然0x3f3f3f3f用memset好用,但是还是有局限性。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#incl

【408DS算法题】039进阶-判断图中路径是否存在

Index 题目分析实现总结 题目 对于给定的图G,设计函数实现判断G中是否含有从start结点到stop结点的路径。 分析实现 对于图的路径的存在性判断,有两种做法:(本文的实现均基于邻接矩阵存储方式的图) 1.图的BFS BFS的思路相对比较直观——从起始结点出发进行层次遍历,遍历过程中遇到结点i就表示存在路径start->i,故只需判断每个结点i是否就是stop

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR

图的最短路径算法——《啊哈!算法》

图的实现方式 邻接矩阵法 int[][] map;// 图的邻接矩阵存储法map = new int[5][5];map[0] = new int[] {0, 1, 2, 3, 4};map[1] = new int[] {1, 0, 2, 6, 4};map[2] = new int[] {2, 999, 0, 3, 999};map[3] = new int[] {3, 7

恶意PNG:隐藏在图片中的“恶魔”

&lt;img src=&quot;https://i-blog.csdnimg.cn/blog_migrate/bffb187dc3546c6c5c6b8aa18b34b962.jpeg&quot; title=&quot;214201hhuuhubsuyuukbfy_meitu_1_meitu_2.jpg&quot;/&gt;&lt;/strong&gt;&lt;/span&gt;&lt;

JS和jQuery获取节点的兄弟,父级,子级元素

原文转自http://blog.csdn.net/duanshuyong/article/details/7562423 先说一下JS的获取方法,其要比JQUERY的方法麻烦很多,后面以JQUERY的方法作对比。 JS的方法会比JQUERY麻烦很多,主要则是因为FF浏览器,FF浏览器会把你的换行也当最DOM元素。 <div id="test"><div></div><div></div

vcpkg子包路径批量获取

获取vcpkg 子包的路径,并拼接为set(CMAKE_PREFIX_PATH “拼接路径” ) import osdef find_directories_with_subdirs(root_dir):# 构建根目录下的 "packages" 文件夹路径root_packages_dir = os.path.join(root_dir, "packages")# 如果 "packages"

Weex入门教程之4,获取当前全局环境变量和配置信息(屏幕高度、宽度等)

$getConfig() 获取当前全局环境变量和配置信息。 Returns: config (object): 配置对象;bundleUrl (string): bundle 的 url;debug (boolean): 是否是调试模式;env (object): 环境对象; weexVersion (string): Weex sdk 版本;appName (string): 应用名字;

小程序button控件上下边框的显示和隐藏

问题 想使用button自带的loading图标功能,但又不需要button显示边框线 button控件有一条淡灰色的边框,在控件上了样式 border:none; 无法让button边框隐藏 代码如下: <button class="btn">.btn{border:none; /*一般使用这个就是可以去掉边框了*/} 解决方案 发现button控件有一个伪元素(::after