Consider the below code:

// upload.js
var fs = require('fs')
var newPath = "E:\\newPath";
var oldPath = "D:\\oldPath";

exports.uploadFile = function (req, res) {
fs.readFile(oldPath, function(err, data) {
    fs.writeFile(newPath, data, function(err) {
        fs.unlink(oldPath, function(){
            if(err) throw err;
            res.send("File uploaded to: " + newPath);
        });
    });
});
};

// app.js
var express = require('express'), // fetch express js library
upload = require('./upload'); // fetch upload.js you have just written

var app = express();
app.get('/upload', upload.uploadFile); 

app.listen(3000);

In the above code, I need to assign the new path dynamically by passing two parameters as query string such as

1. Drive and 2. Folder name.

How to give the query string in code file and how to run the program to achieve the GET request?

有帮助吗?

解决方案

You can access query-string parameters via req.query. Also, you could probably just use fs.rename instead of manually reading, writing, and unlinking a file.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top