NodeJS copies the files: Generally, the copy operation of small files uses the stream pipeline transport operation. First you need to load the imported file: var fs = require('fs'); 1. Create folders synchronously fs.mkdirSync(yourfileDirPath); Create folder asynchronously fs.mkdir(yourfileDirPath); 2. Determine whether the folder exists - Synchronize fs.existsSync(dirpath); asynchronous fs.exists(dirpath); Using the above related operations, we can directly write a method to determine the creation of a folder. function mkdir(dirpath,dirname) { //Judge whether the second parameter is normal to avoid passing in wrong parameters when calling if (dirname !== path.dirname(dirpath)) { mkdir(dirpath); return; } if (fs.existsSync(dirname)) { fs.mkdirSync(dirpath) } else { mkdir(dirname, path.dirname(dirname)); fs.mkdirSync(dirpath); } } Pay attention to synchronous and asynchronous creation, reading and other issues, otherwise the folder will not exist when copied. It is recommended to use synchronous creation Sync method, which is generally in the form of fs.xxxSync. Summarize This is the end of this article about copying node.js files, creating folders and other related operations. For more related node.js file copying and folder creation content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL initialization password operation under Mac
>>: MySQL 5.7.17 installation and configuration method graphic tutorial under win7
Preface When Ahhang was developing the Springboot...
Friends who have some basic knowledge of SQL must...
Learning Linux commands is the biggest obstacle f...
Aggregating data from various sources allows the ...
If a div sets background-color and background-ima...
Table of contents Preface concept Stabilization d...
Method 1: Use Google advanced search, for example...
The detailed steps for installing mysql5.7.19 on ...
When starting MongoDB, the prompt is: error while...
Zabbix automatically discovers rules to monitor s...
Use CSS filter to write mouse over effect <div...
This article example shares the specific code of ...
Table of contents Preface 1. Configure gzip compr...
Find the problem I recently encountered a problem...
The goal of this document is to explain the Json ...