码迷,mamicode.com
首页 >  
搜索关键字:递归打印目录下的文件名. opendir readdir    ( 197个结果
shell遍历文件夹读取文件夹下的文件
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
node.js 文件获取和文件属性相关
var fs = require('fs'); //获取当前目录下的全部文件 fs.readdir('./',function(err,files){ if(!err){ console.log(files); } }) //获取某个文件的属性信息 //引入第三方的时间格式化模块,安装方式命令行执行 ...
分类:Web程序   时间:2021-03-08 13:08:51    阅读次数:0
shutil文件去重模块
使用文档 # -*- 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
linux系统调用-2
一、文件系统控制 1、文件读写操作 API 头文件 comment 2、文件系统操作 API 头文件 comment opendir #include<dirent.h> readdir #include<dirent.h> ...
分类:系统相关   时间:2020-07-05 17:31:32    阅读次数:63
# php获取目录下所有文件及目录(多种方法)【转】
获取某目录下所有子文件和子目录 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
php递归删除缓存文件
/** * 递归删除缓存文件 * @param $dir 缓存文件路径 */ public function delFileByDir($dir) { $dh = opendir($dir); while ($file = readdir($dh)) { if ($file != "." && $f ...
分类:Web程序   时间:2020-04-16 14:53:07    阅读次数:54
文件IO其三
1.目录操作 目录操作和文件的逻辑类似:打开目录 > 操作目录 > 关闭目录 对于目录来说,基本的操作就是读取子文件/子目录的信息,所以操作目录其实只有一个操作,就是读取目录。 a.打开目录 opendir()函数 参数: name 要打开的路径 函数执行成功之后会返回目录流指针,失败则返回NULL ...
分类:其他好文   时间:2020-02-29 00:53:12    阅读次数:74
PHP实现压缩文件夹内所有图片的分辨率
代码兼容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
nodejs入门API之fs模块
fs模块下的类与FS常量 fs模块下的主要方法 fs的Promise API与FileHandle类 一、fs模块下的类 1.1 fs.Dir:表示目录流的类,由 fs.opendir()、fs.opendirSync() 或 fsPromises.opendir() 创建。 1.2 fs.Dire ...
分类:Windows程序   时间:2019-12-09 12:05:29    阅读次数:166
197条   1 2 3 4 ... 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!