码迷,mamicode.com
首页 >  
搜索关键字:readdir    ( 145个结果
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
nodejs 遍历目录
1 var fs = require("fs"), path = require("path"); function walk(dir, callback) { fs.readdir(dir, function(err, files) { if (err) throw err; files.forE ...
分类:Web程序   时间:2019-11-16 20:02:09    阅读次数:97
PHP压缩文件夹的方法
PHP压缩文件夹的方法<pre> public function addFileToZip($path, $zip) { $handler = opendir($path); //打开当前文件夹由$path指定。 while (($filename = readdir($handler)) !== ...
分类:Web程序   时间:2019-11-13 21:59:08    阅读次数:92
PHP遍历一个文件夹下所有文件和子文件夹的函数
<?phpfunction my_dir($dir) { $files = array(); if(@$handle = opendir($dir)) { //注意这里要加一个@,不然会有warning错误提示:) while(($file = readdir($handle)) !== false ...
分类:Web程序   时间:2019-10-12 18:36:27    阅读次数:88
145条   1 2 3 4 ... 15 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!