vilian_test_firststep_20180308_mygodisthenamealreadyexistence

这是一个测试脚本,千万不要下载

Usage no npm install needed!

<script type="module">
  import vilianTestFirststep20180308Mygodisthenamealreadyexistence from 'https://cdn.skypack.dev/vilian_test_firststep_20180308_mygodisthenamealreadyexistence';
</script>

README

学习使用node文件模块

判断文件是否存在

var fs = require('fs');

fs.stat('/xxx', function(err, stat){
    if(stat&&stat.isFile()) {
        console.log('文件存在');
    } else {
        console.log('文件不存在或不是标准文件');
    }
})