buscapina estas haciendo justamente lo contrario, si negas hay que negar lo que no queres
Código:
<html>
<head>
<script>
function verif(v){
if(/[^\(\)\{\}\[\]\/\\'";,]+/.test(v))
{
alert("SI");
}else{
alert("NNNNNOOOOOOO");
}
}
</script>
</head>
<body>
<form name="ff">
<input type="file" name="tt" onblur="verif(this.value)"></form>
</body>
</html>