|
- import fs from 'fs'
- import path from 'path'
-
- export default eventHandler(async (event) => {
- const directoryPath = path.join(process.cwd(), 'media/files/screenshit/')
-
- try {
- const files = await fs.promises.readdir(directoryPath)
-
- return files.filter(file => !file.startsWith('.'))
- } catch (error) {
- return {
- success: false,
- error: error.message
- }
- }
- })
|