Linux系统编程

文章目录

    • 1. 文件里面存放了5行数据,使用追加模式打开文件,打印前3行,并写入一行,期间使用ftell打印当前位置。
    • 2. 修改文件的权限,注意必须使用命令行参数。
    • 3. 使用两种方法打印当前目录。
    • 4. 传递一个路径名,还有一个文件名,搜索对应路径下是否有该文件,有就打印显示该文件的绝对路径。
    • 5. 传递任意一个目录路径,能够显示该目录的ls -l的效果。
    • 6. 打印当前目录,然后改变当前目录,再打印当前目录。
    • 7. 创建一个目录,然后删除掉它。
    • 8. 实现tree命令的效果。
    • 9. 实现cp -r命令的效果。
    • 10.新建一个文件,里边内容为hello,通过mmap映射该文件后,修改hello为world,然后解除映射

1. 文件里面存放了5行数据,使用追加模式打开文件,打印前3行,并写入一行,期间使用ftell打印当前位置。

#include<func.h>
int main(int argc, char * argv[]){ARGS_CHECK(argc,2);FILE *fp= fopen("./file1","a+");fseek(fp,0,SEEK_SET);char line[100];for(int i =0 ;i<3;i++){if(fgets(line,sizeof(line),fp)!=NULL){printf("%s",line);}}printf("Current position :%ld\n",ftell(fp));fprintf(fp,"This is a new line\n");fclose(fp);return 0;
}
fprintf(fp, "This is a new line\n"); 这行代码在最后打印一句话的原因是因为你使用了追加模式打开文件。追加模式会将文件指针定位到文件末尾,所以在你使用 fseek(fp, 0, SEEK_SET); 将文件指针移动到文件开头后,接下来的写操作会将数据追加到文件末尾。因此,即使你已经将文件指针移动到了文件开头,写入的数据仍然会被追加到文件末尾,这就是为什么在结尾处打印一句话的原因。

2. 修改文件的权限,注意必须使用命令行参数。

  • #include<func.h>
    int main(int argc,char**argv){ARGS_CHECK(argc,3);   //chmod 有三个变量main   0777    文件mode_t mode;sscanf(argv[1],"%o",&mode);int ret = chmod(argv[2],mode);printf("mode  = %o\n",mode);ERROR_CHECK(ret,NULL,"chmod");return 0;
    }
    

3. 使用两种方法打印当前目录。

#include<func.h>
int main(int argc,char**argv){char *ret = getcwd(NULL,0);ERROR_CHECK(ret,NULL,"getcwd");printf("%s\n",ret);return 0;
}
#include<func.h>
int main(int argc,char**argv){char buf[1024]={0};char *ret = getcwd(0,sizeof(buf));ERROR_CHECK(ret,NULL,"getcwd");printf("%s\n",buf);printf("%s\n",ret);return 0;
}

4. 传递一个路径名,还有一个文件名,搜索对应路径下是否有该文件,有就打印显示该文件的绝对路径。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <limits.h>
#include <sys/stat.h>
#include <dirent.h>// 搜索指定路径下是否存在指定文件,并打印该文件的绝对路径
void search_file(const char *dir_path, const char *file_name) {DIR *dir = opendir(dir_path);if (dir == NULL) {perror("opendir");return;}struct dirent *entry;struct stat statbuf;char full_path[PATH_MAX];while ((entry = readdir(dir)) != NULL) {snprintf(full_path, PATH_MAX, "%s/%s", dir_path, entry->d_name);if (stat(full_path, &statbuf) == -1) {perror("stat");continue;}if (S_ISREG(statbuf.st_mode) && strcmp(entry->d_name, file_name) == 0) {char real_path[PATH_MAX];if (realpath(full_path, real_path) == NULL) {perror("realpath");closedir(dir);return;}printf("Found file %s at path: %s\n", file_name, real_path);closedir(dir);return;}}printf("File %s not found in directory %s\n", file_name, dir_path);closedir(dir);
}int main(int argc, char *argv[]) {if (argc != 3) {fprintf(stderr, "Usage: %s <directory> <file_name>\n", argv[0]);return 1;}search_file(argv[1], argv[2]);return 0;
}

5. 传递任意一个目录路径,能够显示该目录的ls -l的效果。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/stat.h>
#include <pwd.h>
#include <grp.h>
#include <time.h>// 显示目录的 ls -l 效果
void display_ls_l(const char *dir_path) {DIR *dir = opendir(dir_path);if (dir == NULL) {perror("opendir");return;}struct dirent *entry;struct stat statbuf;while ((entry = readdir(dir)) != NULL) {char full_path[PATH_MAX];snprintf(full_path, PATH_MAX, "%s/%s", dir_path, entry->d_name);if (stat(full_path, &statbuf) == -1) {perror("stat");continue;}// 打印文件类型和权限printf((S_ISDIR(statbuf.st_mode)) ? "d" : "-");printf((statbuf.st_mode & S_IRUSR) ? "r" : "-");printf((statbuf.st_mode & S_IWUSR) ? "w" : "-");printf((statbuf.st_mode & S_IXUSR) ? "x" : "-");printf((statbuf.st_mode & S_IRGRP) ? "r" : "-");printf((statbuf.st_mode & S_IWGRP) ? "w" : "-");printf((statbuf.st_mode & S_IXGRP) ? "x" : "-");printf((statbuf.st_mode & S_IROTH) ? "r" : "-");printf((statbuf.st_mode & S_IWOTH) ? "w" : "-");printf((statbuf.st_mode & S_IXOTH) ? "x" : "-");// 打印硬链接数、所有者、所属组、文件大小、最后修改时间和文件名struct passwd *pw = getpwuid(statbuf.st_uid);struct group *gr = getgrgid(statbuf.st_gid);printf(" %2ld %s %s %8ld %s %s\n",(long)statbuf.st_nlink, pw->pw_name, gr->gr_name,(long)statbuf.st_size, ctime(&statbuf.st_mtime), entry->d_name);}closedir(dir);
}int main(int argc, char *argv[]) {if (argc != 2) {fprintf(stderr, "Usage: %s <directory>\n", argv[0]);return 1;}display_ls_l(argv[1]);return 0;
}

6. 打印当前目录,然后改变当前目录,再打印当前目录。

#include <stdio.h>
#include <unistd.h>int main() {char cwd[1024];// 获取当前工作目录并打印if (getcwd(cwd, sizeof(cwd)) != NULL) {printf("Current working directory: %s\n", cwd);} else {perror("getcwd");return 1;}// 改变当前工作目录到 /tmpif (chdir("/tmp") != 0) {perror("chdir");return 1;}// 获取新的当前工作目录并打印if (getcwd(cwd, sizeof(cwd)) != NULL) {printf("New working directory: %s\n", cwd);} else {perror("getcwd");return 1;}return 0;
}//还是那个问题改变的不是文件的位置,而是执行程序的位置

7. 创建一个目录,然后删除掉它。

#include <stdio.h>
#include <unistd.h>int main() {const char *dir_name = "test_dir";// 创建目录if (mkdir(dir_name, 0777) == -1) {perror("mkdir");return 1;}printf("Directory created: %s\n", dir_name);// 删除目录if (rmdir(dir_name) == -1) {perror("rmdir");return 1;}printf("Directory deleted: %s\n", dir_name);return 0;
}

8. 实现tree命令的效果。

// 这里写a的代码
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/stat.h>void print_tree(const char *path, int level) {DIR *dir = opendir(path);if (dir == NULL) {perror("opendir");return;}struct dirent *entry;while ((entry = readdir(dir)) != NULL) {if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {continue;}struct stat statbuf;char full_path[PATH_MAX];snprintf(full_path, PATH_MAX, "%s/%s", path, entry->d_name);if (stat(full_path, &statbuf) == -1) {perror("stat");continue;}for (int i = 0; i < level - 1; i++) {printf("|   ");}if (level > 0) {printf("|-- ");}printf("%s\n", entry->d_name);if (S_ISDIR(statbuf.st_mode)) {print_tree(full_path, level + 1);}}closedir(dir);
}int main(int argc, char *argv[]) {if (argc != 2) {fprintf(stderr, "Usage: %s <directory>\n", argv[0]);return 1;}print_tree(argv[1], 0);return 0;
}

9. 实现cp -r命令的效果。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>#define BUF_SIZE 1024void copy_file(const char *src_path, const char *dst_path) {int src_fd = open(src_path, O_RDONLY);if (src_fd == -1) {perror("open");return;}int dst_fd = open(dst_path, O_WRONLY | O_CREAT | O_TRUNC, 0666);if (dst_fd == -1) {perror("open");close(src_fd);return;}char buf[BUF_SIZE];ssize_t bytes_read, bytes_written;while ((bytes_read = read(src_fd, buf, BUF_SIZE)) > 0) {bytes_written = write(dst_fd, buf, bytes_read);if (bytes_written != bytes_read) {perror("write");close(src_fd);close(dst_fd);return;}}if (bytes_read == -1) {perror("read");}close(src_fd);close(dst_fd);
}void copy_dir(const char *src_path, const char *dst_path) {DIR *dir = opendir(src_path);if (dir == NULL) {perror("opendir");return;}if (mkdir(dst_path, 0777) == -1) {perror("mkdir");return;}struct dirent *entry;struct stat statbuf;while ((entry = readdir(dir)) != NULL) {if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {continue;}char src_child_path[PATH_MAX];char dst_child_path[PATH_MAX];snprintf(src_child_path, PATH_MAX, "%s/%s", src_path, entry->d_name);snprintf(dst_child_path, PATH_MAX, "%s/%s", dst_path, entry->d_name);if (stat(src_child_path, &statbuf) == -1) {perror("stat");continue;}if (S_ISDIR(statbuf.st_mode)) {copy_dir(src_child_path, dst_child_path);} else {copy_file(src_child_path, dst_child_path);}}closedir(dir);
}int main(int argc, char *argv[]) {if (argc != 3) {fprintf(stderr, "Usage: %s <source> <destination>\n", argv[0]);return 1;}copy_dir(argv[1], argv[2]);return 0;
}

10.新建一个文件,里边内容为hello,通过mmap映射该文件后,修改hello为world,然后解除映射

#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>int main() {const char *file_path = "test.txt";const char *data = "hello";const char *new_data = "world";// 创建并写入文件int fd = open(file_path, O_RDWR | O_CREAT, 0666);if (fd == -1) {perror("open");return 1;}write(fd, data, strlen(data));close(fd);// 映射文件到内存fd = open(file_path, O_RDWR);if (fd == -1) {perror("open");return 1;}struct stat sb;if (fstat(fd, &sb) == -1) {perror("fstat");close(fd);return 1;}char *addr = mmap(NULL, sb.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);if (addr == MAP_FAILED) {perror("mmap");close(fd);return 1;}// 修改内存中的内容为 "world"memcpy(addr, new_data, strlen(new_data));// 解除映射if (munmap(addr, sb.st_size) == -1) {perror("munmap");close(fd);return 1;}close(fd);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/755829.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【C++庖丁解牛】继承的概念及定义 | 继承中的作用域 | 继承与友元继承与静态成员 | 复杂的菱形继承及菱形虚拟继承

&#x1f341;你好&#xff0c;我是 RO-BERRY &#x1f4d7; 致力于C、C、数据结构、TCP/IP、数据库等等一系列知识 &#x1f384;感谢你的陪伴与支持 &#xff0c;故事既有了开头&#xff0c;就要画上一个完美的句号&#xff0c;让我们一起加油 目录 1.继承的概念及定义1.1继…

C++ 中this指针归纳

在C中&#xff0c;this指针是一个隐含于每一个非静态成员函数中的特殊指针。它指向调用该成员函数的对象&#xff0c;使得在成员函数中能够访问到当前对象的数据成员和其他成员函数。以下是关于this指针的一些重要信息&#xff1a; 指针类型&#xff1a;this指针是一个指向当前…

【漏洞复现】用友U8Cloud base64 SQL注入漏洞

0x01 产品简介 用友U8 Cloud是用友推出的新一代云ERP&#xff0c;主要聚焦成长型、创新型企业&#xff0c;提供企业级云ERP整体解决方案。 0x02 漏洞概述 用友U8 Cloud 存在SQL注入漏洞&#xff0c;未授权的攻击者可通过此漏洞获取数据库权限&#xff0c;从而盗取用户数据&a…

FFmpeg-- c++实现:pcm和yuv编码

文章目录 流程音频视频 api核心代码audioencoder.haudioencoder.cppvideoencoder.hvideoencoder.cpp pcm和yuv编码为aac和h264&#xff0c;封装为c的AudioEncoder类和VideoEncoder类 流程 音频 初始化音频参数 int InitAAC(int channels, int sample_rate, int bit_rate); 音…

KVM安装-kvm彻底卸载-docker安装Webvirtmgr

KVM安装和使用 一、安装 检测硬件是否支持KVM需要硬件的支持,使用命令查看硬件是否支持KVM。如果结果中有vmx(Intel)或svm(AMD)字样,就说明CPU的支持的 egrep ‘(vmx|svm)’ /proc/cpuinfo关闭selinux将 /etc/sysconfig/selinux 中的 SELinux=enforcing 修改为 SELinux=d…

AI预测福彩3D第13弹【2024年3月19日预测--第3套算法重新开始计算第2次测试】

今天咱们继续对第3套算法进行第2次测试&#xff0c;第3套算法加入了012路的权重。废话不多说了&#xff0c;直接上结果吧~ 最终&#xff0c;经过研判分析&#xff0c;2024年3月19日福彩3D的七码预测结果如下&#xff1a; 百位&#xff1a;0 1 3 4 2 7 9&#xff08;6换9&#x…

LCR144翻转二叉树(力扣简单题,Java,递归+非递归)

目录 题目描述&#xff1a; 递归代码1&#xff1a; 递归代码2&#xff1a; 非递归代码&#xff08;层次遍历&#xff09;&#xff1a; 题目描述&#xff1a; 给定一棵二叉树的根节点 root&#xff0c;请左右翻转这棵二叉树&#xff0c;并返回其根节点。 示例 1&#xff1a;…

synchronized锁升级的过程

在Java中&#xff0c;锁的状态分为四种&#xff0c;分别是无锁状态、偏向锁状态、轻量级锁状态和重量级锁状态 无锁 当一个线程第一次访问一个对象的同步块时&#xff0c;"JVM会在对象头中设置该线程的Thread ID&#xff0c;并将对象头的状态位设置为“偏向锁”。这个过…

mysql 主从复制、读写分离、高可用

MySQL 的主从复制、读写分离和高可用性是数据库架构中常见的概念&#xff0c;它们旨在提高数据库的可靠性、性能和可扩展性。下面我将分别解释这三个概念&#xff1a; 1. MySQL 主从复制 主从复制 是 MySQL 中的一个功能&#xff0c;允许数据从一个 MySQL 数据库服务器&#…

如何在iOS系统抓取log

前言&#xff1a;因为作者目前工作领域和苹果智能家居有关&#xff0c;然后发现一些bug其实是apple sdk原生code的问题&#xff0c;所以需要给apple提radar单&#xff0c;就需要抓ios端Log充当证据给apple看&#xff0c;其实ios抓log非常简单&#xff0c;大家感兴趣可以学习下哦…

VS2022 配置QT5.9.9

QT安装 下载地址&#xff1a;https://download.qt.io/archive/qt/ 下载安装后进行配置 无法运行 rc.exe 下载VS2022 官网下载 配置 1.扩展-管理扩展-下载Qt Visual Studio Tools 安装 2.安装完成后&#xff0c;打开vs2022,点击扩展&#xff0c;会发现多出了QT VS Tools,点…

网页的制作

1.格式 <!DOCTYPE html> <html> <head> <meta charset"utf-8"> <title>中文测试。。。。</title> </head> <body> 这里是测试body测试内容。。。 </body> </ht…

爱恩斯坦棋小游戏使用C语言+ege/easyx实现

目录 1、游戏介绍和规则 2、需要用到的头文件 3、这里我也配上一个ege和easyx的下载链接吧&#xff0c;应该下一个就可以 4、运行结果部分展示 5、需要用到的图片要放在代码同一文件夹下 6、代码地址&#xff08;里面有需要用到的图片&#xff09; 1、游戏介绍和规则 规则如…

leetcode 647 回文子串

1. 暴力解法 class Solution:def countSubstrings(self, s: str) -> int:res 0for i in range(len(s)):for j in range(i1,len(s)1):seq s[i:j]rev seq[::-1]if seq rev:res res 1return res 2. 动态规划 class Solution:def countSubstrings(self, s: str) -> i…

简单介绍注册波兰公司的基本条件

波兰&#xff0c;一个位于中欧的国家&#xff0c;具有丰富的历史文化和资源&#xff0c;同时也拥有稳定的政治和经济环境。在这里&#xff0c;注册公司不仅有助于您拓展业务&#xff0c;还能享受到优惠的税收政策和良好的投资环境。下面&#xff0c;我们将详细介绍注册波兰公司…

代码随想录算法训练营第五十一天 | 力扣 309. 买卖股票的最佳时机含冷冻期,714. 买卖股票的最佳时机含手续费

题目链接&#xff1a;309. 买卖股票的最佳时机含冷冻期 - 力扣&#xff08;LeetCode&#xff09; class Solution { public:int maxProfit(vector<int>& prices) {int n prices.size();if (n 0) return 0;vector<vector<int>> dp(n, vector<int>…

Footprint Analytics 强势入局 AI 推出全新投研工具

作者&#xff1a;lesleyfootprint.network 3 月 15 日&#xff0c;链上数据平台 Footprint Analytics 宣布入局 AI&#xff0c;推出了旗下首款 AI 投研工具—— Pea.AI。 作为专门服务于区块链行业的 AI 平台&#xff0c;Pea.AI 旨在提升加密资产投资领域的数据流动性和知识…

镭速,企业传输大文件都在用的udp文件传输工具

在当今快速变化的数字世界中&#xff0c;文件传输工具已成为企业运营不可或缺的一部分。尤其是面对大文件传输的需求&#xff0c;传统的TCP协议由于其设计上的局限性&#xff0c;往往无法满足企业对高速、稳定传输的需求。这时&#xff0c;UDP文件传输工具以其独特的优势走进了…

你知道吗?腾讯云服务器61元一年,2024又降价了

腾讯云服务器多少钱一年&#xff1f;61元一年起。2024年最新腾讯云服务器优惠价格表&#xff0c;腾讯云轻量2核2G3M服务器61元一年、2核2G4M服务器99元一年可买三年、2核4G5M服务器165元一年、3年756元、轻量4核8M12M服务器646元15个月、4核16G10M配置32元1个月、312元一年、8核…

自注意力机制的理解

一、自注意力要解决什么问题 循环神经网络由于信息传递的容量以及梯度消失问题&#xff0c;只能建立短距离依赖关系。为了建立长距离的依赖关系&#xff0c;可以增加网络的层数或者使用全连接网络。但是全连接网络无法处理变长的输入序列&#xff0c;另外&#xff0c;不同的输…