collect_time.sh脚本需求: 遍历/dz目录下所有以A开头的文件夹,读取该文件夹下的time.log的首行内容,依次写入脚本的路径参数/lj/times.txt中。 编写collect_time.sh: #!/bin/bash file="time.log" readDir="/dz" ...
分类:
系统相关 时间:
2021-03-16 13:55:14
阅读次数:
0
var fs = require('fs'); //获取当前目录下的全部文件 fs.readdir('./',function(err,files){ if(!err){ console.log(files); } }) //获取某个文件的属性信息 //引入第三方的时间格式化模块,安装方式命令行执行 ...
分类:
Web程序 时间:
2021-03-08 13:08:51
阅读次数:
0
使用文档 # -*- coding:utf-8 -*- #! python2 import shutil a=0 readDir = r"D:\pycharm-project\my-project\test\thefile2018-11-27.sh" writeDir = r"D:\pycharm- ...
分类:
其他好文 时间:
2020-07-28 14:00:53
阅读次数:
62
#python去重脚本 # -*- coding:utf-8 -*- #! python2 import shutil a=0 readDir = "old.txt" #old writeDir = "new.txt" #new lines_seen = set() outfile = open(w ...
分类:
其他好文 时间:
2020-07-07 19:52:23
阅读次数:
94
一、文件系统控制 1、文件读写操作 API 头文件 comment 2、文件系统操作 API 头文件 comment opendir #include<dirent.h> readdir #include<dirent.h> ...
分类:
系统相关 时间:
2020-07-05 17:31:32
阅读次数:
63
获取某目录下所有子文件和子目录 function getDirContent($path){ if(!is_dir($path)){ return false; } //readdir方法 /* $dir = opendir($path); $arr = array(); while($conten ...
分类:
Web程序 时间:
2020-07-03 17:23:14
阅读次数:
67
/** * 递归删除缓存文件 * @param $dir 缓存文件路径 */ public function delFileByDir($dir) { $dh = opendir($dir); while ($file = readdir($dh)) { if ($file != "." && $f ...
分类:
Web程序 时间:
2020-04-16 14:53:07
阅读次数:
54
1.目录操作 目录操作和文件的逻辑类似:打开目录 > 操作目录 > 关闭目录 对于目录来说,基本的操作就是读取子文件/子目录的信息,所以操作目录其实只有一个操作,就是读取目录。 a.打开目录 opendir()函数 参数: name 要打开的路径 函数执行成功之后会返回目录流指针,失败则返回NULL ...
分类:
其他好文 时间:
2020-02-29 00:53:12
阅读次数:
74
代码兼容gif、png、jpg、jpeg格式,若报warning,则可能是原图片本身有损坏 代码如下: <?php $path = 'D:\phpstudy\WWW\ABC\upload\images';///当前目录 $handle = opendir($path); //当前目录 while ( ...
分类:
Web程序 时间:
2019-12-17 18:21:53
阅读次数:
147
fs模块下的类与FS常量 fs模块下的主要方法 fs的Promise API与FileHandle类 一、fs模块下的类 1.1 fs.Dir:表示目录流的类,由 fs.opendir()、fs.opendirSync() 或 fsPromises.opendir() 创建。 1.2 fs.Dire ...