dir-walk-test.js~HEAD 278 B

1234567891011121314151617
  1. /**
  2. * Created by fy on 15-10-8.
  3. */
  4. 'use strict';
  5. var dirWalk = require('../lib/myfs/digui');
  6. var list = dirWalk.walk('/home/fy/temp/zip-upload-template/zip', 0);
  7. list.forEach(function (o) {
  8. if (o.floor == 3) {
  9. console.log('-----------');
  10. console.log(o.path);
  11. }
  12. });