Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
var mock = require('mock-fs');
module.exports = {
'/path/to/dir': {
'.system': 'SYSTEM',
'def.dat': 'DEF',
'abc.txt': 'ABC',
'abc123.txt': 'ABC123',
'subdir': {
'.dot': 'DOT',
'test456.dat': '456',
'test789.txt': '789',
'test123.txt': '123',
'abc123.txt': 'ABC123',
'subsubdir': {
'.hidden': 'HIDDEN',
'abc123.dat': 'ABC123',
'def456.dat': '456'
}
},
'otherdir': {
'.other': 'DOT',
'symlink.dat': mock.symlink({path:'/path/to/dir/subdir/test123.txt'}),
'test789.txt': '789',
'test123.txt': '123',
'subsubdir': {
'.hidden': 'HIDDEN',
'abc123.txt': 'ABC123',
'def456.txt': '456'
}
}
}
};