1 "显示行号 2 set nu 3 4 "启动时隐去援助提示 5 set shortmess=atI 6 7 "语法高亮 8 syntax on 9 10 "文件类型自动检测 11 filetype on 12 13 "使用vim的键盘模式 14 set nocompa...
分类:
其他好文 时间:
2014-09-13 18:34:05
阅读次数:
241
public class upFiles{ private string path = null;//文件的路径 private string fileType = null;//文件上传类型 private int sizes = 0;//大小 /// /// 初始化变量 /// public.....
分类:
Web程序 时间:
2014-09-12 14:50:23
阅读次数:
201
上一小节已经实现了对图片的传输,接下来就是判断文件是否为js,css,png等格式。我们增加一个函数用于判断格式 1 int WebServer::get_filetype(char *type,char *path)//用于判断该url指向文件的后缀 2 { 3 if(strstr(p...
分类:
Web程序 时间:
2014-08-30 03:29:58
阅读次数:
432
用lua遍历文件目录,收集特定类型的文件: 1 local LINUX = "linux" 2 local WIN = "win" 3 local platform = WIN 4 5 local need_the_filetype = function(tfiletype, filename) ....
分类:
其他好文 时间:
2014-08-23 19:02:01
阅读次数:
630
protected void Button1_Click(object sender, EventArgs e) { // string postfix = string.Empty; // string fileType = string.Empty; // postfix = ef[4, 1];...
分类:
其他好文 时间:
2014-08-18 12:18:54
阅读次数:
152
安装步骤:
1.sudo pip install pyflakes (必要时加个代理更快 -i http://e.pypi.python.org/simple) 先安装pip
2.去https://github.com/kevinw/pyflakes-vim下载pyflakes-vim插件
3.解压
4.sudo vi /etc/vim/vimrc,添加“
filetype on ...
分类:
编程语言 时间:
2014-08-10 18:41:50
阅读次数:
2599
ArrayList 元素//目录条目类public class FolderItem{ public string filename; public string filetype; public int size; public int number; public ...
分类:
其他好文 时间:
2014-08-09 00:02:54
阅读次数:
310
file/filetype.c #include "apue.h"intmain(int argc, char *argv[]){ int i; struct stat buf; char *ptr; for (i = 1; i < argc; i++) { printf("%s: ", argv[...
分类:
其他好文 时间:
2014-07-18 23:38:27
阅读次数:
412
从别处找来的方法,做记录。在全局vim配置文件中(/etc/vimrc)或个人vim配置文件中($HOME/vimrc)加入如下代码即可将自动缩进改为4空格:autocmd FileType python setlocal et sta sw=4 sts=4其中相关变量含义:变量名 缩写 含义(no...
分类:
编程语言 时间:
2014-07-02 17:08:59
阅读次数:
245
由于android自身的原因,对大文件(如影视频文件)的操作很容易造成OOM,即:Dalvik堆内存溢出,利用文件分割将大文件分割为小文件可以解决问题。文件分割后分多次请求服务。
1 //文件分割上传 2 public void cutFileUpload(String fileType,...
分类:
移动开发 时间:
2014-06-06 21:35:40
阅读次数:
507