博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go语言中的文件创建,写入,读取,删除
阅读量:6093 次
发布时间:2019-06-20

本文共 1691 字,大约阅读时间需要 5 分钟。

package main;import (	"os"	"fmt"	"strconv")func main() {	//打开文件,返回文件指针	file, error := os.Open("./1.txt");	if error != nil {		fmt.Println(error);	}	fmt.Println(file);	file.Close();	//以读写方式打开文件,如果不存在,则创建	file2, error := os.OpenFile("./2.txt", os.O_RDWR|os.O_CREATE, 0766);	if error != nil {		fmt.Println(error);	}	fmt.Println(file2);	file2.Close();	//创建文件	//Create函数也是调用的OpenFile	file3, error := os.Create("./3.txt");	if error != nil {		fmt.Println(error);	}	fmt.Println(file3);	file3.Close();	//读取文件内容	file4, error := os.Open("./1.txt");	if error != nil {		fmt.Println(error);	}	//创建byte的slice用于接收文件读取数据	buf := make([]byte, 1024);	//循环读取	for {		//Read函数会改变文件当前偏移量		len, _ := file4.Read(buf);		//读取字节数为0时跳出循环		if len == 0 {			break;		}		fmt.Println(string(buf));	}	file4.Close();	//读取文件内容	file5, error := os.Open("./1.txt");	if error != nil {		fmt.Println(error);	}	buf2 := make([]byte, 1024);	ix := 0;	for {		//ReadAt从指定的偏移量开始读取,不会改变文件偏移量		len, _ := file5.ReadAt(buf2, int64(ix));		ix = ix + len;		if len == 0 {			break;		}		fmt.Println(string(buf2));	}	file5.Close();	//写入文件	file6, error := os.Create("./4.txt");	if error != nil {		fmt.Println(error);	}	data := "我是数据\r\n";	for i := 0; i < 10; i++ {		//写入byte的slice数据		file6.Write([]byte(data));		//写入字符串		file6.WriteString(data);	}	file6.Close();	//写入文件	file7, error := os.Create("./5.txt");	if error != nil {		fmt.Println(error);	}	for i := 0; i < 10; i++ {		//按指定偏移量写入数据		ix := i * 64;		file7.WriteAt([]byte("我是数据"+strconv.Itoa(i)+"\r\n"), int64(ix));	}	file7.Close();	//删除文件	del := os.Remove("./1.txt");	if del != nil {		fmt.Println(del);	}	//删除指定path下的所有文件	delDir := os.RemoveAll("./dir");	if delDir != nil {		fmt.Println(delDir);	}}

  

转载地址:http://vsgwa.baihongyu.com/

你可能感兴趣的文章
SSIS从理论到实战,再到应用(3)----SSIS包的变量,约束,常用容器
查看>>
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
淘宝的几个架构图
查看>>
Android扩展 - 拍照篇(Camera)
查看>>
JAVA数组的定义及用法
查看>>
充分利用HTML标签元素 – 简单的xtyle前端框架
查看>>
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
【BZOJ】1624: [Usaco2008 Open] Clear And Present Danger 寻宝之路(floyd)
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
ViewPager切换动画PageTransformer使用
查看>>
coco2d-x 基于视口的地图设计
查看>>
C++文件读写详解(ofstream,ifstream,fstream)
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>