英文: (Lua 5.2) Cannot create file because io.open returns nil file handle 问题 我正在尝试在Lua中创建一个文件。 以下这些帖子...
如何以与操作系统无关的方式在Go中获取文件系统的根目录
英文: How to get root of filesystem in Go in an OS-agnostic way 问题 我想以一种既适用于Windows又适用于Unix的方式获取文件系统的根...
不知道文件扩展名的情况下是否可以获取文件?
英文: Is it possible to get a file without knowing its extension? 问题 我需要获取一个已知路径和名称的文件,即使我不知道它的扩展名。 例如...
如何创建具有特定权限的目录
英文: How to create a directory that has specific permissions 问题 我正在尝试使用Go语言创建一个具有特定权限的目录。 我需要 drwxrwx...
为什么在Go语言中使用syscall.O_DIRECT标志写文件会使写文件变慢?
英文: Why is writing files witht syscall.O_DIRECT flag make writing files slower in go? 问题 我有一个名为test....
频道挂起,可能没有在正确的位置关闭。
英文: Channel hangs, probably not closing at the right place 问题 我正在尝试编写一个小程序来学习Go语言。该程序应该以尽可能高效和快速的方式递...
获取挂载点的已使用空间百分比和已使用inode百分比。
英文: Getting the percentage of used space and used inodes in a mount 问题 我需要计算Go语言中挂载路径(例如/mnt/mycusto...
如何检查由于磁盘空间不足导致写入失败的情况。
英文: golang: how to check if a write fails due to insufficient disk space 问题 如果一个 Go 程序使用 Write() 返回错...
在Go(Golang)中查找文件系统对象
英文: Find filesystem objects in Go (Golang) 问题 我正在尝试使用Go语言找到匹配的文件系统对象,并确定输入的路径类型。具体而言,如果对象与提供的路径匹配,我需...
与用户的本地系统文件路径的容器通信
英文: Container communication with user's local system filepath 问题 我正在使用golang和aws S3 SDK for gola...
5