好久没写io操作了,手生了好多,为了防止自己老年痴呆,最简单实用的c++代码也push上来吧, 环境:mac,xcode(注意mac环境下Windows的函数不能用) 功能:打开一个文件目录,把所有文件名读取到一个TXT文件中 #include <iostream> #include <vector> #include <string> #include <dirent.h> #include <vector> #include <stri…
""" 要求: 1.读取cdm文件的所有子文件夹,然后每个文件夹里面是抽出一个一个mp3后缀的文件. 遍历所有的子文件,然后将这些mp3文件,保存到一个新的文件夹.文件夹后缀是当前文件的年代的 基础加后缀_single,例如:来自2000年文件夹就命名2000_single. """ import shutil import pathlib import pprint from typing import List, Generator, Ite…
例子如下,存在test1.txt, test2.txt, test3.txt,现在准备把这三个文件的内容都追加到testall.txt 中 test1.txt 1 2 3 4 5 6 test2.txt a b c e f g test3.txt 59 9 6 z c b 则可以使用命令:cat test1.txt test2.txt test3.txt > testall.txt, 生成如下文件: testall.txt 1 2 3 4 5 6 a b c e f g 59 9 6 z c b…
新挂载的盘,打算将数据文件夹配置到 /data/mysql,却无法启动mysqld. 除了将目录授权给mysql用户和组以外 chown -R mysql:mysql /data/mysql 太需要将目录上下文安全权限授予mysql chcon -R -t mysqld_db_t /data/mysql…
监控文件夹测试程序: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace FileSystemWatcherTest { class Program { static void Main(string[] args)…
1,在某个路径下查文件. 在/etc下查找“*.log”的文件 find /etc -name “*.log” 2,扩展,列出某个路径下所有文件,包括子目录. find /etc -name “*” 3,在某个路径下查找所有包含“hello abcserver”字符串的文件. find /etc -name “*” | xargs grep “hello abcserver” 或者find /etc -name “*” | xargs grep “hello abcserver” > ./cqt…
Linux目录和文件——查询目录和文件的命令 摘要:本文主要学习了在Linux系统中是如何查询目录和文件的. which命令 which命令是根据PATH环境变量设置的路径,去搜索执行文件. 基本语法 which [选项] 命令名称 选项说明 -a:列出所有的可以找到的同名执行文件. 使用举例 [root@localhost ~]# which ls alias ls='ls --color=auto' /usr/bin/ls [root@localhost ~]# type命令 type命令用…
1.前言 Source Insight这个软件工具功能非常强大,很适合用来分析一些大型的code工程,例如Linux内核源码,本文将简单介绍如何在Source Insight工程中添加一种新的文件类型. 2.添加步骤 在添加的过程中以Linux内核中设备树文件进行举例测试,设备树是一种描述硬件设备的文件,以下进行简单步骤分析: 首先在菜单栏上依次点击Options-->File Type Options按钮,如下: 在打开的页面中点击Add Type按钮,进行新的文件类型添加,如下: 然后输入新…
/// <summary> /// 按照word模板文件 生成新word文件 /// </summary> /// <param name="tempFile">模板文件路径</param> /// <param name="saveFile">生成文件路径</param> /// <param name="billRegister">议案登记</param…
1) logrotate配置   logrotate 程序是一个日志文件管理工具.用来把旧的日志文件删除,并创建新的日志文件,我们把它叫做“转储”.   我们可以根据日志文件的大小,也可以根据其天数来转储,这个过程一般通过 cron 程序来执行.   logrotate 程序还可以用于压缩日志文件,以及发送日志到指定的E-mail . logrotate 的配置文件是 /etc/logrotate.conf  主要参数如下表: 参数                         功能   co…