Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to judge whether it is a file or a folder in node

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces how to judge whether it is a file or a folder in node. It is very detailed and has a certain reference value. Friends who are interested must read it!

In node, you can use the isFile () and isDirectory () methods to determine whether it is a file or a folder. The isFile () method detects whether it is a regular file and returns "true" if so; the isDirectory () method detects whether it is a folder and returns "true" if it is.

This tutorial operating environment: windows7 system, nodejs version 12.19.0, DELL G3 computer.

Node determines whether a file or a folder is open

Var fs = require ("fs"); / / determine whether the file or folder is open var path = "wen.txt"; fs.stat (path,function (err,stat) {if (err) {console.error (err); throw err;} console.log (stat); console.info (path+ "is a" + stat.isFile ()) Console.info (path+ "is a" + stat.isDirectory ());}); console.info ("file opened successfully")

Description:

IsFile ()

Added on: v0.1.10

Return:

If it is a regular file, true is returned.

IsDirectory ()

Added on: v10.10.0

Return:

If it is a file system directory, true is returned.

The above is all the contents of the article "how to judge whether it is a file or a folder in node". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report