-
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
-
ansic_headers
标准c的重要的头文件,便于在程序编写中查阅,很有帮助的(standards of the first important document, prepared to facilitate the inspection process, helpful)
- 2007-05-09 19:15:17下载
- 积分:1
-
defreader
读取行情的def文件的例子,并保存到数据库了,包含了两个行情数据库,上海和深圳的。(Quotes of the def file to read the example, and saved to the database, and contains two Quotes databases, Shanghai and Shenzhen.)
- 2009-10-27 09:29:38下载
- 积分:1
-
DirDog
监控文件夹变化的库,该功能封装在一个dll库中,方便调用。(monitor the change of the directory)
- 2012-02-21 08:53:09下载
- 积分:1
-
elause_oanipulator
基于J2EE架构的工作流引擎的分析与设计,很好的代码()
- 2018-02-10 21:30:40下载
- 积分:1
-
AutoBakcup
可根据时间自动对指定的文件备份到指定的位置。(According to the time automatically to the specified file backup to the specified location.)
- 2016-12-03 08:11:57下载
- 积分:1
-
thuass
修改的条件是设定页中的日期,只有文件日期与原来日期相同的那,()
- 2018-05-05 09:09:22下载
- 积分:1
-
FileUtil
简单实现文件(夹)的复制、移动、删除、获取大小等操作
复制文件或者目录,复制前后文件完全一样。
删除一个文件或者目录 。
移动文件或者目录,移动前后文件完全一样,如果目标文件夹不存在则创建。
重命名文件或文件夹 。
读取文件或者目录的大小 。
判断一个文件是否存在 。
本地某个目录下的文件列表(不递归) 。
递归目录下的所有文件。
将字符串写入指定文件(当指定的父路径中文件夹不存在时,会最大限度去创建,以保证保存成功!)
获得文件大小(Simple implementation file (folder) copy, move, delete, size and other operations for
Copy files or directories, copy files around the same.
Delete a file or directory.
Moving files or directories, move files around the same, if the target folder does not exist is created.
Rename the file or folder.
Read the file or directory size.
Determine whether a file exists.
Local list of files in a directory (not recursive).
Recursive directory of all files.
Write the string specified file (when the path specified in the parent folder does not exist, it will maximize to create, save to ensure success!)
Get file size)
- 2011-12-26 10:27:24下载
- 积分:1
-
VBToExcel
VB写的如何和Excel表格进行数据交换,修改,删除等动作.有详细的中午注释,适合菜鸟学习!(How to write VB and Excel spreadsheets for data exchange, modify, or delete action. Noon detailed notes, suitable for a novice to learn!)
- 2013-09-22 15:22:18下载
- 积分:1
-
chuandan
这是一个宣传海报的制作源文件,方便我们以后再次做海报。(This is a propaganda poster making the source files, to help us again in the future to do the posters.)
- 2012-10-28 14:12:56下载
- 积分:1