When developing Node.js, sometimes you need to check whether multiple files exist. In this case, we can use the fs module provided by Node.js to achieve this.
fs module is the file system module of Node.js, which provides methods and functions for operating files. We can use it to read files, write files, rename files, delete files, etc. Below we will demonstrate how to use the fs module to check whether multiple files exist.
First, we need to install Node.js and create a new Node.js project. Go into the project directory and install the fs module using the following command:
npm install fs
Next, we create a file called checkFiles.js
. In this file, we will write a function to check if multiple files exist. The code is as follows:
const fs = require('fs'); function checkFiles(files) { for(let i = 0; i < files.length; i++) { try { fs.statSync(files[i]); } catch(err) { if(err.code === 'ENOENT') { console.log("File doesn't exist: ", files[i]); return false; } } } return true; }
This function accepts an array of file names as parameters. We then use a for loop to iterate through each file in the array. Inside the loop, we use the fs.statSync() method to check if the file exists. If the file does not exist, this method will throw an ENOENT
error, which we can catch and print out that the file does not exist. Finally, a Boolean value is returned indicating whether the file exists.
Now, we can use the following code under the file to call the function and check if multiple files exist:
const files = ['file1.txt', 'file2.txt', 'file3.txt']; const result = checkFiles(files); console.log(result);
In this example, we assume three files file1 .txt
, file2.txt
, file3.txt
exist. If all files exist, the function returns true
, otherwise it returns false
.
If you want to determine whether a single file exists, you can use the following code:
const fs = require('fs'); const filePath = 'file.txt'; try { if (fs.existsSync(filePath)) { console.log('File exists'); } else { console.log('File does not exist'); } } catch(err) { console.error(err); }
This method uses the fs.existsSync() method to check whether the file exists. Returns true
if the file exists, false
otherwise. Note that when using this method, you need to catch errors through the try...catch
statement.
In summary, checking whether multiple files exist can be achieved by looping through the file name array and using the statSync() method in the fs module. To check whether a single file exists, you can use the existsSync() method in the fs module. These methods are very simple and easy to use, and can easily check whether the file exists, which is convenient for us to deal with in Node.js development.
The above is the detailed content of nodejs reads whether multiple files exist. For more information, please follow other related articles on the PHP Chinese website!

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

Article discusses connecting React components to Redux store using connect(), explaining mapStateToProps, mapDispatchToProps, and performance impacts.

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)