-
php 文件操作 示例(递归删除目录)
//递归删除目录function deletedir($dir){$handle = opendir($dir); while(false !==($file=readdir($handle))){ if($file!=="."&&$file!==".."){ //排除当前目录与父级目录 $file=$dir .DIRECTORY_SEPARATOR. $file; if(is_dir($file)){ deletedir($file); }else{ @unlink($file);} } } @rmdir($dir) ; closedir($hadnle) ;}
- 2014-07-01下载
- 积分:1
-
Processes-two-CSV-files
对2个CSV进行处理,通过一定条件对文件进行组合和拆分,形成新的2个CSV文件,可以作为操作多个文件夹的实例(The two CSVs are processed, and the files are combined and split by certain conditions to form two new CSV files, which can be used as an example for manipulating multiple folders)
- 2016-12-09 09:32:50下载
- 积分:1
-
ChangeTime
批量修改文件创建时间、修改时间等的程序,用于刷新文件内容(bat change file time )
- 2014-04-22 22:19:54下载
- 积分:1
-
notebook
实现记事本的一些简单功能,包括文件的打开,保存,复制,粘贴等。(Achieve some simple notepad functions, including file open, save, copy, paste and so on.)
- 2013-11-06 22:31:59下载
- 积分:1
-
diary
可运行的日记文件,可以记录内容并按时间分类,根据你的输入打开,删改日记文件等(a diary which can be executed so that you can record your diary and date.It can be )
- 2013-07-29 02:41:42下载
- 积分:1
-
UESTDES
TESTDES, Rar des algorithm test
- 2017-04-06 12:45:13下载
- 积分:1
-
HuffamnCoding
用VC++实现的一个简单哈夫曼压缩码和解码程序,可以对任意字符的文本文件进行压缩并解压(With VC++ Realize a simple Huffman compression code and decoding procedures, arbitrary characters can compress a text file and extracting)
- 2008-04-17 21:21:29下载
- 积分:1
-
moqso
说明:
- 2017-11-04 20:43:32下载
- 积分:1
-
Filetest
一个java开发的文件操作的小例子,欢迎大家使用(Development of a java file operations of small examples, welcome to use)
- 2008-01-04 13:43:45下载
- 积分:1
-
BlindSpot
能进行简单的文件捆绑,但是操作有点不方便()
- 2007-10-14 18:56:30下载
- 积分:1