golang bad file descriptor问题的解决方法
程序员文章站
2022-03-18 11:56:59
发现问题
在golang中,对文件进行写操作时出现上面的错误。首先复现下这个问题。
package main
import (
"os"
"fmt...
发现问题
在golang中,对文件进行写操作时出现上面的错误。首先复现下这个问题。
package main import ( "os" "fmt" ) func main() { file, err := os.open("a.txt") if err != nil { fmt.println(err) } defer file.close() content:=[]byte("go is an open source programing language that makes it easy to build simple,reliable,and efficient software") _, err = file.write(content) if err != nil { fmt.println(err) } }
此时运行就会出现错误write a.txt: bad file descriptor
。这是什么原因呢?其实这和os.open()
函数有关,下面了解下open()函数。
func open(name string) (*file,error) { return openfile(name, o_rdonly, 0) }
可以看出来,open函数打开文件的默认方式是只读,所以当你要对打开的文件进行写操作时,是不被允许的。openfile函数的第二个传入参数的值可以是:
参数名 含义
o_rdonly 打开只读文件
o_wronly 打开只写文件
o_rdwr 打开既可以读取又可以写入文件
o_append 写入文件时将数据追加到文件尾部
o_create 如果文件不存在,则创建一个新的文件
o_excl 文件必须不存在,然后会创建一个新的文件
o_sync 打开同步i/0
o_trunc 文件打开时可以截断
解决方法
现在知道原因,解决方法只要改变文件读取的方式就行。如下例:
package main import ( "os" "fmt" ) func main() { file, err := os.openfile("a.txt", os.o_append|os.o_wronly, os.modeappend) if err != nil { fmt.println(err) } defer file.close() content:=[]byte("go is an open source programing language that makes it easy to build simple,reliable,and efficient software") _, err = file.write(content) if err != nil { fmt.println(err) } }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。
推荐阅读
-
mysql报错1033 Incorrect information in file: ‘xxx.frm’问题的解决方法
-
Linux crontab报错:BAD FILE MODE的解决方法
-
LNMP下提示File not found问题的解决方法
-
mysql报错1033 Incorrect information in file: ‘xxx.frm’问题的解决方法
-
Linux执行.sh文件,提示No such file or directory的问题的解决方法
-
解决mongodb在ubuntu下启动失败,提示couldn‘t remove fs lock errno:9 Bad file descriptor的错误
-
Golang TCP粘包拆包问题的解决方法
-
golang网络socket粘包问题的解决方法
-
Linux crontab报错:BAD FILE MODE的解决方法
-
bash: ./a.sh: /bin/bash^M: bad interpreter: No such file or directory的解决方法