上一页 1 2 3 4 5 6 7 8 9 ··· 124 下一页
摘要: 摘自:文心一言 在C语言中,可以使用stat()函数来判断一个路径对应的是文件、文件夹或者其他类型。 #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> int main() { char path[] = "/path/t 阅读全文
posted @ 2024-02-05 10:39 LiuYanYGZ 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://forum.ubuntu.org.cn/viewtopic.php?t=380854 我在学习linux C系统编程,书上有个源代码可以实现自己的ls命令,不过在查错的过程中这个问题卡了我很久 #include <stdio.h> #include <stdlib.h> #in 阅读全文
posted @ 2024-02-05 10:23 LiuYanYGZ 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://blog.csdn.net/m0_38062470/article/details/113574697 #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> int stat(const char *p 阅读全文
posted @ 2024-02-05 10:22 LiuYanYGZ 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://openjfx.cn 阅读全文
posted @ 2024-02-02 11:09 LiuYanYGZ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://linuxcpp.0voice.com/?id=65276 可以使用标准库中的fstream和string类来读写ini文件。 以下是一个示例代码: #include <iostream> #include <fstream> #include <sstream> #inclu 阅读全文
posted @ 2024-02-01 13:52 LiuYanYGZ 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://www.cnblogs.com/lsepi/p/15963203.html Jenkins实现下拉框选择参数,联动显示不同的子参数 安装插件“Active Choices” Job选择参数化构建过程,添加一个“选项参数” 设置好选项名称和参数值 再添加一个参数“Active C 阅读全文
posted @ 2024-01-29 14:52 LiuYanYGZ 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/qq_50573146/article/details/125521902 1.安装Extended Choice Parameter插件 2.参数化构建过程中添加Extended Choice Paramete Multi-Level Single 阅读全文
posted @ 2024-01-29 13:59 LiuYanYGZ 阅读(936) 评论(1) 推荐(0) 编辑
摘要: 摘自:https://blog.csdn.net/qq_40542534/article/details/111358539 1. 撤销已经add,但是没有commit的问题 git reset HEAD 2. 撤销已经commit,但是没有push到远端的文件(仅撤销commit 保留add操作) 阅读全文
posted @ 2024-01-26 10:11 LiuYanYGZ 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://www.jenkins.io/zh/download/ 摘自:https://pkg.jenkins.io/debian-stable/ Jenkins Debian Packages This is the Debian package repository of Jenki 阅读全文
posted @ 2024-01-26 10:04 LiuYanYGZ 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 摘自:百度文心一言 qemu-user-static是一个用于利用当前操作系统来运行其它架构的一个仿真器 要使Ubuntu上运行ARM64程序,需要进行以下操作: 安装QEMU模拟器:可以通过命令sudo apt-get install qemu-user-static来安装。这将为系统提供支持多种 阅读全文
posted @ 2024-01-25 16:54 LiuYanYGZ 阅读(266) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 124 下一页