-1

私は新進の開発者です。特定のフォルダーのファイル名を取得し、それをメインにエクスポートする必要があります

const fs = require("fs-extra")
let list = []; 
async function getFilename(foldername) 
 {
   list = await fs.readdir(foldername)
   console.log("This should come 1st ")
 }
getFilename(foldername); 
console.log(list,"- files in the folder");

 console.log("This should come 2nd ")
// ....... other coding stuff using list

module.exports = {}

このコードで直面する問題は、すべてのコード行の後に非同期関数が実行されることですが、最初に実行する必要がありました..

出力

[] - files in the folder 
This should come 2nd
This should come 1st 

私が望むアウトプット

This should come 1st 
[] - files in the folder 
This should come 2nd

事前に感謝します

4

0 に答える 0