-
VB文件检索程序,支持根据后缀名查找,文件内容匹配
资源描述VB文件检索程序,支持根据后缀名查找文件,根据搜索内容和文件内容匹配查找相应文件,适用于在大量代码文件中查找特点语句。软件运行效果图:。文件检索速度取决于文件数量和硬盘读写速度。
- 2022-11-27 05:10:03下载
- 积分:1
-
一个很好的递归遍历文件的程序,首先输入查找的目录,然后输入匹配的文件后缀(例如:*.bmp),单击“查找”,ListCtrl列表框中会显示出匹配到的文件的完整路...
一个很好的递归遍历文件的程序,首先输入查找的目录,然后输入匹配的文件后缀(例如:*.bmp),单击“查找”,ListCtrl列表框中会显示出匹配到的文件的完整路径,同时给出匹配到的文件的总数。-A very good document recursive traversal procedures, first of all, enter the directory search, then enter the document matching suffix (for example:*. bmp), click
- 2022-12-08 16:25:02下载
- 积分:1
-
你好
Hello
This matlab files are useful for rs coding.
- 2022-11-28 05:55:03下载
- 积分:1
-
节目告诉我们
应用背景本节目讲述去除重复阵列的双打只使用C程序,这对终端使用GCC编译器是最好的一个。关键技术此代码用于从数组中删除重复的代码
- 2022-01-26 08:21:30下载
- 积分:1
-
a terrific C revenue log processing. Functional strong!
一个很棒的C++开源的日志处理程序。功能很强!-a terrific C revenue log processing. Functional strong!
- 2023-03-20 17:30:04下载
- 积分:1
-
用二叉树的算法对指定目录下的文件和目录以格式化的方法保存。修改了原程序中的一些bug。...
用二叉树的算法对指定目录下的文件和目录以格式化的方法保存。修改了原程序中的一些bug。
-binary tree algorithm used for the specified directory of files and directories to the formatting preserved. The original amendments to the procedures in some bug.
- 2023-06-22 12:10:03下载
- 积分:1
-
用于批量更改文件的后缀名(或者文件的类型)
用于批量更改文件的后缀名(或者文件的类型)-volume changes for the suffix document (or file type)
- 2022-12-25 05:10:03下载
- 积分:1
-
file manipulation of the source code, documents containing It is reported on the...
文件操作的源代码,包含它的文档报告的详细代码,请参考实现使用
- 2023-01-30 02:15:03下载
- 积分:1
-
简单的利用了模版的思想,初学者可以细心的学习
简单的利用了模版的思想,初学者可以细心的学习-Simple use of a template of ideas, beginners can learn from careful
- 2022-02-04 17:02:03下载
- 积分:1
-
CI框架上传类改写,支持多附件上传
CI框架上传类改写,
原来的程序只支持一个附件上传,并不支持控件数组上传。
现已修改支持多附件上传。将该文件放到自己程序目录中的libraries文件夹下。
调用如下:
// 附件上传处理
$folder = date("Ym");
$upload_dir = APPPATH . "/app/upload/".$folder;
$config["upload_path"] = $upload_dir;
$config["allowed_types"] = "gif|jpg|png|txt|doc|docx|xls|xlsx|ppt|pptx|pdf";
$config["max_size"] = "5120";
$config["max_width"] = "0";
$config["max_height"] = "0";
$config["max_filename"] = "0";
$config["overwrite"] = false;
$config["encrypt_name"] = true;
$config["remove_spaces"] = true;
$this->load->library("upload", $config);
$field_name = "att";
if (!$this->upload->do_upload($field_name, true))
{
// 出错
$error = array("error" => $this->upload->display_errors());
} else {
// 正
- 2022-05-05 09:14:31下载
- 积分:1