files
Examples of creating, opening, writing, reading, closing, and deleting files.
# Node.js
const fs = require("fs");
// create file
fs.closeSync(fs.openSync("test.txt", "w"));
// open file (returns file descriptor)
const fd = fs.openSync("test.txt", "r+");
let wbuf = Buffer.from("hello world.");
let rbuf = Buffer.alloc(12);
let off = 0;
let len = 12;
let pos = 0;
// write file
fs.writeSync(fd, wbuf, pos);
// read file
fs.readSync(fd, rbuf, off, len, pos);
console.log(rbuf.toString());
// close file
fs.closeSync(fd);
// delete file
fs.unlinkSync("test.txt");
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Output
hello world.
1
# Go
package main
import (
"fmt"
"os"
"syscall"
)
func main() {
// create file
file, err := os.Create("test.txt")
if err != nil {
panic(err)
}
// close file
file.Close()
// open file
file, err = os.OpenFile("test.txt", os.O_RDWR, 0755)
if err != nil {
panic(err)
}
// file descriptor
fd := file.Fd()
// open file (using file descriptor)
file = os.NewFile(fd, "test file")
wbuf := []byte("hello world.")
rbuf := make([]byte, 12)
var off int64
// write file
if _, err := file.WriteAt(wbuf, off); err != nil {
panic(err)
}
// read file
if _, err := file.ReadAt(rbuf, off); err != nil {
panic(err)
}
fmt.Println(string(rbuf))
// close file (using file descriptor)
if err := syscall.Close(int(fd)); err != nil {
panic(err)
}
// delete file
if err := os.Remove("test.txt"); err != nil {
panic(err)
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Output
hello world.
1
编辑 (opens new window)
上次更新: 2022/09/30, 11:34:22