A node module to check and store file changed.
By npm:
npm i file-changed --save
By yarn:
yarn add file-changed
This package export a class since version 1.0.0 which means you could have multiple instances and save the information where you like.
- Default:
./\_timestamp.json
Path to save collection informations on disk.
Collection instance.
Access to a file last modified information.
- file {string}: The target file path
- type {string}: The information type
ts
: timestamp (default)md5
: md5 hash
false
{boolean}: no such file in collection- timestamp or md5 {string}: depends on
type
Get all file paths in collection.
- file paths {array}
Add files to collection.
- path {string}: the target file path or glob
this
{object}: for chain operation
Remove files from collection.
- path {string}: the target file path or glob
this
{object}: for chain operation
Check collection files changed or not.
- no arguments: check all files.
- path {string}: the target file path or glob
- changed files {array}
Update files last modified information.
- no arguments: update all files
- path {string}: the target file path or glob
this
{object}: for chain operation
Clean files in collection which could not found.
this
{object}: for chain operation
Save collection information onto disk.
this
{object}: for chain operation
const Fc = require('file-changed');
const collectionA = new Fc('./path/to/save/info'); // Create collection instance whill will load modified info from that path if that path exists
collectionA.addFile('test/files/file1', 'test/files/file2'); // Add 2 files in collectionA
const fileList = collectionA.list(); // Get file list in collectionA
collectionA.rmFile('test/files/file1'); // Remove 1 file from collectionA
collectionA.addFile('test/files/*'); // Add file by glob
const modifiedList1 = collectionA.check('test/files/file1'); // Check 1 file modified or not
const modifiedList2 = collectionA.check()); // Check all files in collectionA modified or not
collectionA.update('test/files/file1'); // Update last modified info for 1 file
collectionA.update(); // Update last modified info for all files in collectionA
const lastModifiedTS = collectionA.get('test/files/file1'); // Get last modified timestamp for that file
const lastModifiedMD5 = collectionA.get('test/files/file1', 'md5'); // Get last modified md5 for that file
collectionA.save(); // Save collectionA modified info to disk
npm test