Documentation ¶
Index ¶
- func OpenFile(filename string, ifExistTrunc bool) (*os.File, error)
- func OpenFileWithAppend(filename string) (*os.File, error)
- func OpenFileWithTrunc(filename string) (*os.File, error)
- func ReadFile(filename string) ([]byte, error)
- func WriteFile(filename string, data []byte, ifExistTrunc bool) error
- func WriteFileWithNoClose(f *os.File, data []byte) error
- func WriteFileWithObj(f *os.File, data []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func OpenFile ¶
OpenFile 文件不存在则创建, 文件存在, 如果ifExistTrunc为true则清空内容, 否则文件以追加模式进行写操作 返回的文件指针模式为可读可写 filename 文件路径 ifExistTrunc 文件存在时是否清空内容
func OpenFileWithAppend ¶
OpenFileWithAppend 文件不存在则创建, 文件存在, 文件以追加模式进行写操作 返回的文件指针模式为可读可写 filename 文件路径
func OpenFileWithTrunc ¶
OpenFileWithTrunc 文件不存在则创建, 文件存在, 清空内容 返回的文件指针模式为可读可写 filename 文件路径
func WriteFileWithNoClose ¶
WriteFileWithNoClose 写数据到文件, 文件对象不会关闭 f 文件对象指针 data 需要写入的数据
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.