上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 87 下一页
摘要: Sqlite是一个轻量级的数据库,类似于Access.一、 安装Python 2.5开始提供了对sqlite的支持,带有sqlite3库.没有sqlite的版本需要去PySqlite主页上下载安装包.PySqlite下载地址http://code.google.com/p/pysqlite/down... 阅读全文
posted @ 2014-04-30 00:35 jianhong 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 1.压缩一个文件夹下的所有文件#coding=utf8import osimport tarfile__author__ = 'Administrator'def main(): cwd = os.getcwd() tar = tarfile.open('test.tar','w:gz'... 阅读全文
posted @ 2014-04-29 14:25 jianhong 阅读(10268) 评论(0) 推荐(1) 编辑
摘要: 1.压缩一个文件夹下的所有文件#coding=utf8import osimport tarfile__author__ = 'Administrator'def main(): cwd = os.getcwd() tar = tarfile.open('test.tar','w:gz'... 阅读全文
posted @ 2014-04-29 14:25 jianhong 阅读(3456) 评论(0) 推荐(0) 编辑
摘要: 模块学习步骤一:手册介绍shutil -- High-level file operations 是一种高层次的文件操作工具类似于高级API,而且主要强大之处在于其对文件的复制与删除操作更是比较支持好。相关API介绍copyfile(src, dst)从源src复制到dst中去。当然前提是目标地址是... 阅读全文
posted @ 2014-04-24 17:33 jianhong 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 解压gzip文件示例:import gzipf = gzip.open('file.txt.gz', 'rb')file_content = f.read()f.close()创建gzip文件:import gzipcontent = "Lots of content here"f = gzip.o... 阅读全文
posted @ 2014-04-24 17:30 jianhong 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 解压gzip文件示例:import gzipf = gzip.open('file.txt.gz', 'rb')file_content = f.read()f.close()创建gzip文件:import gzipcontent = "Lots of content here"f = gzip.o... 阅读全文
posted @ 2014-04-24 17:30 jianhong 阅读(7579) 评论(0) 推荐(0) 编辑
摘要: 解压gzip文件示例:import gzipf = gzip.open('file.txt.gz', 'rb')file_content = f.read()f.close()创建gzip文件:import gzipcontent = "Lots of content here"f = gzip.o... 阅读全文
posted @ 2014-04-24 17:30 jianhong 阅读(3505) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_6285b04e0100f4xr.html查看文件时间戳命令:stat awk.txtFile: `awk.txt'Size: 20 Blocks: 8 IO Block: 4096 regular fileDevice: 801h/20... 阅读全文
posted @ 2014-04-23 11:08 jianhong 阅读(557) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_6285b04e0100f4xr.html查看文件时间戳命令:stat awk.txtFile: `awk.txt'Size: 20 Blocks: 8 IO Block: 4096 regular fileDevice: 801h/20... 阅读全文
posted @ 2014-04-23 11:08 jianhong 阅读(247) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_6285b04e0100f4xr.html查看文件时间戳命令:stat awk.txtFile: `awk.txt'Size: 20 Blocks: 8 IO Block: 4096 regular fileDevice: 801h/20... 阅读全文
posted @ 2014-04-23 11:08 jianhong 阅读(3978) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 87 下一页