remove-dist-json.js 789 B

123456789101112131415161718192021222324252627282930313233
  1. import fs from 'fs'
  2. import path from 'path'
  3. let read = 'dist/data'
  4. function deleteFile(url, name) {
  5. var files = []
  6. if (fs.existsSync(url)) {
  7. //判断给定的路径是否存在
  8. files = fs.readdirSync(url) //返回文件和子目录的数组
  9. files.forEach(function (file) {
  10. var curPath = path.join(url, file)
  11. if (fs.statSync(curPath).isDirectory()) {
  12. //同步读取文件夹文件,如果是文件夹,则函数回调
  13. deleteFile(curPath, name)
  14. } else {
  15. if (file.indexOf(name) > -1) {
  16. //是指定文件,则删除
  17. fs.unlinkSync(curPath)
  18. console.log('删除文件:' + curPath)
  19. }
  20. }
  21. })
  22. } else {
  23. console.log('给定的路径不存在!')
  24. }
  25. }
  26. deleteFile(read, '.json')