當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js fsPromises.utimes()用法及代碼示例


fsPromises.utimes()方法用於異步更改文件的修改和訪問時間戳。可以使用數字,字符串或Date對象指定時間戳。如果時間戳不能轉換為正確的數字,或者是NaN,Infinity或-Infinity,則將引發錯誤。

它更改path引用的對象的文件係統時間戳,然後在成功時不帶任何參數地解決Promise。

用法:

fsPromises.utimes( path, atime, mtime )

參數:此方法接受上述和以下所述的三個參數:

  • path:它是一個字符串,表示必須更改其時間戳的文件的路徑。
  • atime:它是數字,字符串或Date對象,表示要設置的新訪問時間戳。
  • mtime:是數字,字符串或Date對象,表示要設置的新修改時間戳。

atime和mtime參數遵循以下規則:



  1. 值可以是代表Unix紀元時間的數字,日期,也可以是數字字符串,例如“ 123456789.0”。
  2. 如果該值不能轉換為數字,或者是NaN,Infinity或-Infinity,則將引發錯誤。

例:本示例說明Node.js中的fsPromises.utimes()方法。創建一個example_gfg.txt文件進行輸入。

文件名:index.js

// Node.js program to demonstrate the  
// fsPromises.utimes() method  
  
// Import the filesystem module  
const fs = require('fs'); 
const fsPromises = require('fs').promises; 
  
console.log("Details before changing time:"); 
  
// Get the stats object of the file  
prevStats = fs.statSync("example_gfg.txt"); 
  
// Access the modified and access time of the file  
console.log("Modification Time:", prevStats.mtime); 
console.log("Access Time:", prevStats.atime); 
  
// Get the current time to change the timestamps  
let newModifiedTime = new Date(); 
let newAccessTime = new Date(); 
  
// Use the utimes() function to assign  
// the new timestamps  
fsPromises.utimes("example_file.txt",  
        newAccessTime, newModifiedTime); 
  
// Get the stats object of the file  
console.log("\nDetails after changing time:"); 
  
// Get the stats object of the file  
changedStats = fs.statSync("example_gfg.txt"); 
  
// Access the changed modified and  
// access time of the file  
console.log("Changed Modification Time:",  
                changedStats.mtime); 
  
console.log("Changed Access Time:",  
                changedStats.atime);

運行此程序的步驟:使用以下命令運行index.js文件:

node index.js

輸出:

Details before changing time:
Modification Time:2020-06-11T17:25:51.136Z
Access Time:2020-06-11T16:50:51.223Z

Details after changing time:
Changed Modification Time:2020-06-11T17:25:51.136Z
Changed Access Time:2020-06-11T16:50:51.223Z

參考: https://nodejs.org/api/fs.html#fs_fspromises_utimes_path_atime_mtime

相關用法


注:本文由純淨天空篩選整理自nitin_sharma大神的英文原創作品 Node.js | fsPromises.utimes() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。