-
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
-
36
说明: 升级文件列表制作工具,应用程序编程源码,很好的参考资料。(Upgrade file list creation tools, application programming source code, a good reference.)
- 2014-02-16 21:14:42下载
- 积分:1
-
VC 对Word文档的各种操作
利用VC++语言编程,在MFC中对Word文档的各种操作,可供参考。(Using VC++ language programming, various operations of Word documents in MFC can be referred to.)
- 2019-03-04 14:13:21下载
- 积分:1
-
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
-
rtm_2d
声波,2维,逆时偏移程序.由于实现2维声波逆时偏移。包含参数卡文件,主程序以及Makfile文件。(reverse time migration for 2D acoustic wave. include parameter file ,main program and Makefile)
- 2015-12-18 16:02:14下载
- 积分:1
-
MSCOMM32
第一:将文件拷到c:windowssystem32第二:运行install,这样就注册好了(This file contains important installation and general information for
Version 8.0.2 of the CEintegrated product set.)
- 2013-09-22 19:37:32下载
- 积分:1
-
DIC-QUERY
EXCEL VBA 字典查询,适用于普通查询条数多 过慢的情况,数万条记录。 (EXCEL VBA dictionary lookup, suitable for general inquiries number of more than a slow, tens of thousands of records.)
- 2013-10-18 09:48:50下载
- 积分:1
-
viher1
界面开发差件 可以开发出一个界面delhpi()
- 2018-05-08 05:08:13下载
- 积分:1
-
RdWrtIni
wince 里面没有WRITEPROFILESTRING等直接读写INI文件的命令,多有不便.因此这份源码实现了WINCE下读写INI的功能.附有源代码及测试程序.经实际使用,效果不错.(wince There are no direct WRITEPROFILESTRING order to read and write INI files, and more has the inconvenience. Therefore the source realize the read and write INI under WINCE function. with the source code and testing procedures. by actual use, good results.)
- 2008-08-05 14:36:18下载
- 积分:1
-
bin2Asc
说明: 该程序将二进制文件转换为ASCII文本文件,论坛留言中不可能粘贴二进制数据,但可将其转换成文本文件,便于在论坛发帖,复制论坛的数据后粘贴到文本框,可重新将文本文件还原成原来的二进制文件。(The program will convert the binary file ASCII text file, the forum can not paste the message in binary data, but can be converted into text files for easy posting in the forum, copy, paste data from the forum text box, text files can be re- revert to the original binary file.)
- 2010-04-25 21:49:42下载
- 积分:1