gpt4 book ai didi

javascript - NodeJS如何将文件转换为字符串

转载 作者:行者123 更新时间:2023-12-04 11:38:07 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Read a text file using Node.js?

(6 个回答)


3年前关闭。




我正在尝试将文本文件(在我的机器上)转换为字符串。最好/最简单的方法是什么?
我正在寻找一个看起来像这样的基本功能:

function fileToString(filepath) {
//this returns a string with the contents of the file
}

我该怎么做?

编辑:我现在知道还有另一个问题会问这个问题,但我不明白这个问题,所以我用不同的词问了这个问题。

最佳答案

为此,您需要 node.js 和以下代码:

const fs = require('fs')

const fileContents = fs.readFileSync('./myFile').toString()

关于javascript - NodeJS如何将文件转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53954558/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com