Home > Web Front-end > JS Tutorial > body text

Instructions for using the fs.fstatSync method in node.js

ringa_lee
Release: 2018-05-11 13:54:33
Original
2156 people have browsed it

Method description:

Synchronized version of fstat().

The method returns a stat array object, including the following information: (The following information is the file information read in the case, non-default value)

Copy code The code is as follows:

{
 
 dev : 0 ,
 
 mode : 33206 ,
 
 nlink : 1 ,
 
 uid : 0 ,
 
 gid : 0 ,
 
 rdev : 0 ,
 
 ino : 0 ,
 
 size : 378(字节) ,
 
 atime : Tue Jun 10 2014 13:57:13 GMT +0800
Copy after login

Syntax:

Copy the code The code is as follows:

fs.fstatSync(fd)
Copy after login

Since this method belongs to the fs module, you need to introduce the fs module before use (var fs= require("fs"))

Receive parameters:

fd File descriptor

Example:

Copy codeThe code is as follows:

var fs = require('fs');
fs.open('content.txt', 'a', function(err,fd){
 if(err){
  throw err;
 }
 console.log('file open');
 
 var statInfo = fs.fstatSync(fd);
 console.log(statInfo);
 
 fs.close(fd , function(){
  console.log('file close');
 })
})
Copy after login

Source code:

Copy code The code is as follows:

fs.fstatSync = function(fd) {
  return binding.fstat(fd);
};
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!