close
// 目的資料夾一定要存在,否則不會自動幫你建立
// 如果原本已經有檔案在的話,會覆蓋掉
package main
import (
"bufio"
"os"
)
func main() {
d1 := []byte("hello\ngo\n")
ioutil.WriteFile("C:/Audio/B.txt", d1, os.ModeAppend)
}
全站熱搜
// 目的資料夾一定要存在,否則不會自動幫你建立
// 如果原本已經有檔案在的話,會覆蓋掉
package main
import (
"bufio"
"os"
)
func main() {
d1 := []byte("hello\ngo\n")
ioutil.WriteFile("C:/Audio/B.txt", d1, os.ModeAppend)
}
留言列表