过滤文件名非法字符
windows现在已知的文件名非法字符有 / : * ? " < > |
var reg = new RegExp('[\\/:*?"<>|]');
if(reg.test(name)){ //文件名含有非法字符() }