1. 程式人生 > >Nodejs入門基礎(使用fs建立資料夾及檔案並獲取資訊返回頁面)

Nodejs入門基礎(使用fs建立資料夾及檔案並獲取資訊返回頁面)

測試直接ping直接設定的埠號
http://localhost:埠號



參考程式碼:

var fs = require("fs");
var http = require("http");
var url = require("url");

http.createServer(function(req,res){
    if (req.url=="/favicon.ico"){
        return;
    }
    res.writeHead(200,{"Content-type":"text/html;charset=UTF-8"})
    fs.mkdir("./hello",function(err){
        if (err){
            console.log(err);
        }else{
            fs.writeFile("hello/img1.txt","課工場",function(err){
                if (err){
                    console.log(err);
                } else{
                    console.log("建立檔案並寫入成功!");
                    fs.readFile("./hello/img1.txt",(err,data)=>{
                        if (err){
                            console.log(err);
                        }else{
                            res.end(data);
                        }
                    });
                }
            })
        }
    });
}).listen(3000,"localhost");