


Use the fmt.Fprintf function to write formatted data to the specified file. If the file does not exist, create it and return the number of bytes written and the error message
In the Go language, we use fmt .Fprintf function to write formatted data to the specified file. This function will write data to the file in the specified format. If the file does not exist, it will be automatically created and return the number of bytes written and error information.
Here is a sample code that shows how to use the fmt.Fprintf function to write data to a file:
package main import ( "fmt" "os" ) func main() { fileName := "output.txt" // 打开或创建文件 file, err := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE, 0755) if err != nil { fmt.Printf("打开文件失败:%s ", err.Error()) return } defer file.Close() // 将数据写入文件 count, err := fmt.Fprintf(file, "Hello World! This is a sample text!") if err != nil { fmt.Printf("写入文件失败:%s ", err.Error()) return } fmt.Printf("成功写入%d个字节 ", count) }
In the above code, we first define the file name to be written is "output.txt". Then open or create the file through the os.OpenFile function, use the os.O_RDWR | os.O_CREATE flag to specify to open the file in read-write mode, and create the file if it does not exist.
Next, we call the fmt.Fprintf function to write the string "Hello World!
This is a sample text!" into the file. The first parameter of the function is the target file to be written, and the second parameter is the data to be written. The first value returned by the function is the number of bytes written, and the second value is a possible error message.
Finally, we print out the number of bytes successfully written through the fmt.Printf function.
It should be noted that when using the fmt.Fprintf function, the file must be opened in a writable mode, that is, the os.O_RDWR flag must be specified, otherwise the file cannot be written.
Through the above sample code, we can see how to use the fmt.Fprintf function to write formatted data to a specified file and automatically create it if the file does not exist. At the same time, we can also judge whether the write is successful based on the number of bytes and error information returned by the function. This way we can handle file writing operations more flexibly.
The above is the detailed content of Use the fmt.Fprintf function to write formatted data to the specified file. If the file does not exist, create it and return the number of bytes written and error information.. For more information, please follow other related articles on the PHP Chinese website!

wpsystem文件夹是windows应用文件夹;创建WpSystem文件夹是为了存储某些特定“Microsoft Store”应用程序的数据,因此建议不要删该文件夹,因为删除之后就无法使用指定的应用。

winreagent是在系统更新或升级的过程中创建的文件夹;该文件夹中通常包含临时文件,当更新或升级失败时,系统将通过还原先前创建的临时文件来回滚到执行更新或升级过程之前的版本。

baidunetdiskdownload是百度网盘默认下载文件的文件夹;百度网盘是百度推出的一项云存储服务,只要下载东西到百度网盘里,都会默认保存到这个文件夹中,并且可跨终端随时随地查看和分享。

“usmt.ppkg”是windows自带的系统还原功能的系统备份文件;Windows系统还原是在不需要重新安装操作系统,也不会破坏数据文件的前提下使系统回到原有的工作状态,PBR恢复功能的备份文件就是“usmt.ppkg”。

mobileEmuMaster是手机模拟大师的安装文件夹。手机模拟大师是PC电脑模拟运行安卓系统的免费模拟器程序,一款可以让用户在电脑上运行手机应用的软件,支持安装安卓系统中常见的apk执行文件,支持QQ、微信等生活常用应用,达到全面兼容的效果。

备份文件的扩展名通常是“.bak”;bak文件是一个备份文件,这类文件一般在'.bak前面加上应该有原来的扩展名,有的则是由原文件的后缀名和bak混合而成,在生成了某种类型的文件后,就会自动生成它的备份文件。

kml是谷歌公司创建的一种地标性文件格式;该文件用于记录某一地点或连续地点的时间、经度、纬度、海拔等地理信息数据,可以被“Google Earth”和“Google Maps”识别并显示。

config是软件或者系统中的配置文件,不可以删除;该文件是在用户开机时对计算机进行初始化设置,也就是用户对系统的设置都由它来对计算机进行恢复,因此不能删除软件或者系统中的config配置文件,以免造成错误。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
