码迷,mamicode.com
首页 >  
搜索关键字:filelist    ( 145个结果
python zlib 压缩 解压 文件夹
import os,os.pathimport zipfile def zip_dir(dirname,zipfilename): filelist = [] if os.path.isfile(dirname): filelist.append(dirname) e...
分类:编程语言   时间:2015-02-04 23:14:00    阅读次数:299
html5之多文件的上传
html5多文件的上传 multiple文件选择FileList选择文件:
分类:Web程序   时间:2015-02-02 21:28:17    阅读次数:161
文件搜索查找功能C++
1.搜索指定文件夹下的文件名和路径#undef UNICODE #include #include #include #include #include #include std::shared_ptr > fileList(co...
分类:编程语言   时间:2015-02-02 18:01:22    阅读次数:197
用C#实现获取文件夹大小的源代码
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace FileList{ ...
分类:Windows程序   时间:2015-01-19 20:41:00    阅读次数:181
Html上传多个文件
1.页面 2.js//添加附件 function AddFiles() { var fileList = document.getElementById("spanFileList"); var file = document.createElement("input"); file.se...
分类:Web程序   时间:2015-01-02 17:24:08    阅读次数:199
Android 文件系统路径
(一)获取总根 File[] fileList=File.listRoots(); //返回fileList.length为1 //fileList.getAbsolutePath()为"/" //这就是系统的总根 (二)打开总根目录 File file=...
分类:移动开发   时间:2014-12-15 15:07:13    阅读次数:236
缩略图异步加载优化
1.FileListItem是自定义的布局组件代表一个文件传输的ListItem项,包含了布局显示的所有组件的集合。2.FileItem是在构造函数通过传入一个数据库的Cursor构造出文件传输需要的所有参数和数据。3.在listCursorAdapter的bindView方法中调用FileList...
分类:其他好文   时间:2014-12-06 12:48:40    阅读次数:134
javascript 使用Html5 File Api进行文件读取
javascript 使用Html File Api进行文件读取,注意“读取”是只读不写,不可以主动获取浏览器所在主机的文件列表。 Html5 中 FileApi主要有 FileUpload,?File,FileList,FileError,Blob,FileReader,DataTransfer...
分类:编程语言   时间:2014-11-27 19:01:34    阅读次数:223
java.io.IOException: ORA-22920: 未锁定含有 LOB 值的行
究其原因是因为没有锁定要更新的行记录。将 mysql="select filebody from filelist where filename=?"中的SQL语句加上 for update即可。如:mysql="select filebody from filelist where filena....
分类:编程语言   时间:2014-11-25 22:49:49    阅读次数:294
Android入门之文件系统操作
Android入门之文件系统操作(二)文件操作相关指令 (转)(一)获取总根File[]fileList=File.listRoots();//返回fileList.length为1//fileList.getAbsolutePath()为"/"//这就是系统的总根File[] fileList=F...
分类:移动开发   时间:2014-11-07 16:45:15    阅读次数:243
145条   上一页 1 ... 11 12 13 14 15 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!