使用formadble时?? var form = new formidable.IncomingForm(); 没设置form.uploadDir(),默认使用的是os.tmpDir(),也就是操作系统当前用户的默认临时目录 执行上传文件命令时就报错"EXDEV, rename.....", 网上查...
分类:
Web程序 时间:
2014-12-22 18:09:13
阅读次数:
162
在debian里可以批量操作文件的后缀名。比如文件没有后缀名,那么就加一个后缀名,或者改变已有的后缀名。增加后缀名:当前目录里的所有文件后缀都变为.xml方法1:find . -type f -exec mv {} {}.xml ';'方法2:rename 's/$/\.xml/' *更改后缀名:r...
分类:
其他好文 时间:
2014-12-20 19:36:30
阅读次数:
181
One of the tablespace is read-only in your database. The los s of all
control file forced you to recreate the control file. Which operation do
you need to perform after re-creating the control fil...
分类:
数据库 时间:
2014-12-20 18:15:56
阅读次数:
251
#_*_coding:utf8_*_
frommultiprocessingimportProcess,Pool
importparamiko
importsys,os
host_list=(
(‘192.168.1.91‘,‘root‘,‘654321‘,123456),
(‘192.168.1.93‘,‘root‘,‘654321‘,123456),
)
s=paramiko.SSHClient() #绑定实例
s.load_system_host_keys() #加载本机HOST..
分类:
编程语言 时间:
2014-12-19 19:19:57
阅读次数:
243
在操作数据库时遇到一个问题:win7 sp1上编译ADO程序,在win7 sp1以下版本不能运行,(Win7系统下需要的动态文件与XP系统的需要的动态链接库不一样。需要根据系统的版本加载动态链接库。)
Win7 系统下:
需要的动态链接库
#import "MSADO15.DLL"
rename_namespace("ADOWE") rename("EOF","EndOfFile")
...
分类:
编程语言 时间:
2014-12-18 22:16:51
阅读次数:
270
wgethttp://dev.mysql.com/get/Downloads/Connector-Net/mysql-connector-net-6.8.3-noinstall.zipunzip mysql-connector-net-6.8.3-noinstall.zip# Rename File...
分类:
数据库 时间:
2014-12-18 21:53:50
阅读次数:
388
1、ALTER TABLE T_PLAT_KEYWORD_STATISTIC RENAME TO T_PLAT_KEYWORD;2、create new_table as select * from old_table;drop table old_table;3、SQL> select tname...
分类:
数据库 时间:
2014-12-17 10:46:58
阅读次数:
259
一,有很多文件,有的文件名里面有-,如何将所有文件名中的-,换成a方法一:rename - a d*方法二:for i in *.txt;do mv $i $(sed "s/a/-/" .htmlfor f in *.txt; do mv ${f%txt}{txt,html}; done
分类:
其他好文 时间:
2014-12-17 00:05:15
阅读次数:
198
假设要更新TableC表,建议的做法是:1)将TableC重命名为TableC_temp SQL语句可以这样写:ALERT TABLE TableC RENAME TO TableC_temp;2)创建新的TableC表3)将数据从TableC_temp中插入到TableC表中 SQL语句可...
分类:
移动开发 时间:
2014-12-16 14:46:39
阅读次数:
168
分离、附加、备份、还原--去重select distinct 列名from表名--更新update fenshu set name = ‘李四’where code = 9--更改表名sp_rename 表名drop database 数据库名(删除数据库)drop table 表名Delete f...
分类:
数据库 时间:
2014-12-15 16:45:26
阅读次数:
243