Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
323 views
in Technique[技术] by (71.8m points)

typescript - Read file with firebase function

I've got a Firebase Function and want to read a html file, stored in a subfolder.

── functions
    ├── src
    |   ├── index.ts // Here is the function
    |   ├── html
    |   |   ├── template.html // the file I want to read

I tried to read the file via const html = fs.readFileSync('./html/template.html'); but it always tells me

Error: ENOENT: no such file or directory, open './html/template.html' at Object.openSync

I worked trough almost every question on stackoverflow concerning this topic but nothing worked for me. I also tried placing the file in the same folder as the function but it always gives me the error.

Do I need to install some package or import the file in some way to access it?

question from:https://stackoverflow.com/questions/65647010/read-file-with-firebase-function

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to use the path.resolve() method, which will resolve your path into an absolute path, before passing it to the fs.readdirSync() method. So the following should do the trick:

    const path = require('path');

    // ...

    let content = fs.readFileSync(
        path.resolve('./html/template.html')
    );

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...