Parent Directory Index Of Private Images Better

To improve the parent directory index of private images, consider the following dynamic feature:

// Generate the index function generateIndex() { const index = []; fs.readdirSync(directory).forEach((file) => { const filePath = path.join(directory, file); const stats = fs.statSync(filePath); if (stats.isFile() && file.endsWith('.jpg')) { const image = { fileName: file, filePath: filePath, }; if (checkAccess('currentUser', image)) { index.push(image); } } }); return index; } parent directory index of private images better

const fs = require('fs'); const path = require('path'); To improve the parent directory index of private

Back
Top Bottom