소스 검색

将日志 与 机器人状态详情进行缓存,

hl 3 주 전
부모
커밋
370cc2c098
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/utils/file.js

+ 2 - 2
src/utils/file.js

@@ -92,7 +92,7 @@ function delFile() {
 
 /***********************************/
 function getLastFile(dirPath, number, callback) {
-    fs.readdir(dirPath, async (err, files) => {
+    fs.readdir(dirPath,  (err, files) => {
         // logger.info(`---------------------4`)
         if (err) {
             logger.error(`无法列出目录。`, err);
@@ -104,7 +104,7 @@ function getLastFile(dirPath, number, callback) {
             for (file of files) {
                 const filePath = path.join(dirPath, file);
                 // logger.info("所有文件:",filePath)
-                const stats = await fs.promises.stat(filePath);
+                const stats =  fs.promises.stat(filePath);
                 if (stats.isFile()) {
                     let tt = stats.birthtime.getTime()
                     fileList.push({name: file, time: tt});