英文: Directory walker written in Go stops with file in use (locked) error 问题 我有一个目录遍历器: package main ...
FSNotify在运行时添加监视目录
英文: FSNotify add watch directories while running 问题 我不太知道如何表达问题,但是这是问题的内容。 我正在使用fsnotify来监视一些目录的变化,当...
稀疏文件在使用io.Copy()时非常庞大。
英文: Sparse files are huge with io.Copy() 问题 我想将文件从一个地方复制到另一个地方,问题是我处理了很多稀疏文件。 有没有(简单的)方法可以在目标位置复制稀疏文...
如何获取文件自上次修改以来添加的内容。
英文: how to get added content of a file since last modification 问题 我正在使用golang开发一个项目,需要对最近添加的文件内容进行索引...
How to check if a web file exists or not by using golang?
英文: How to check if a web file exists or not by using golang? 问题 我想检查一个大文件是否存在于一个 Web 服务器上,使用的是 Go 语...
go – reading binary file with struct
英文: go - reading binary file with struct 问题 我正在尝试使用Go语言读取二进制文件,但有一个问题。 如果我按照以下方式读取,一切都正常: package ma...
写入 []byte 到文件中导致生成了一个大小为零的文件。
英文: Go. Writing []byte to file results in zero byte file 问题 我试图将结构化数据序列化到文件中。我查看了一些示例,并创建了以下结构: func...
Golang,重新定位文件指针的正确方法
英文: Golang, a proper way to rewind file pointer 问题 package main import ( "bufio" "encodi...
Why my Go program creates another Go process with the name of an open file, and why it's so big?
英文: Why my Go program creates another Go process with the name of an open file, and why it's so ...
从文件中高效地读取前两个字节 – Golang
英文: Reading the first two bytes from a file efficiently - Golang 问题 我正在尝试找到一种使用Go语言从文件中读取前两个字节的好方法。 ...
43