热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

文件。C#中的AppendAllText(字符串、字符串、编码)方法,示例

文件。C#中的AppendAllText(字符串、字符串、编码)方法,示例

文件。C# 中的 AppendAllText(字符串、字符串、编码)方法,示例

原文:https://www . geesforgeks . org/file-appendalltextstring-string-encoding-method-in-csharp-with-examples/

文件。AppendAllText(String,String,Encoding) 是一个内置的 File 类方法,用于使用指定的编码将指定的字符串追加到给定的文件中,如果该文件存在,则创建一个新文件,然后追加完成。

语法:

public static void AppendAllText (string path, string contents, System.Text.Encoding encoding);

参数:该函数接受两个参数,如下图所示:



  • Path: This is the file to be appended with the given content.

  • Directory: This is the specified content to be added to the file.

  • Code: This is the specified character code.


例外:


  • ArgumentException: 路径是零长度字符串,只包含空格,或者包含一个或多个由 InvalidPathChars 定义的无效字符。

  • ArgumentNullException: 路径为空。

  • 路径工具异常:给定的路径、文件名或两者都超过了系统定义的最大长度。

  • directory ynotfoundexception:指定的路径无效(例如,目录不存在或位于未映射的驱动器上)。

  • IOException: 打开文件时出现输入/输出错误。

  • 未授权访问异常:路径指定了一个只读文件。或者当前平台不支持此操作。或者路径指定了一个目录。或者呼叫者没有所需的权限。

  • notSupportDexception:路径的格式无效。

  • 安全性异常:调用方没有所需的权限。

下面是说明文件的程序。方法。
程序 1: 在运行下面的代码之前,创建了一个文件,其内容如下所示:

file.txt

c sharp . c sharp . c sharp . c sharp


// C# program to illustrate the usage
// of File.AppendAllText() method
// Using System, System.IO,
// System.Text and System.Linq namespaces
using System;
using System.IO;
using System.Text;
using System.Linq;
class GFG {
    // Main() method
    public static void Main()
    {
        // Creating a file
        string myfile = @"file.txt";
        // Adding extra texts
        string appendText = " is a CS portal." + Environment.NewLine;
        File.AppendAllText(myfile, appendText, Encoding.UTF8);
        // Opening the file to read from.
        string readText = File.ReadAllText(myfile);
        Console.WriteLine(readText);
    }
}

执行:

mcs -out:main.exe main.cs
mono main.exe
GeeksforGeeks is a CS portal.

运行上述代码后,显示上述输出,文件内容如下所示:

file.txt

程序 2: 最初没有创建文件,但是下面的代码本身创建了一个新文件并附加了指定的内容。

c sharp . c sharp . c sharp . c sharp


// C# program to illustrate the usage
// of File.AppendAllText() method
// Using System, System.IO,
// System.Text and System.Linq namespaces
using System;
using System.IO;
using System.Text;
using System.Linq;
class GFG {
    // Main() method
    public static void Main()
    {
        // Creating a file
        string myfile = @"file.txt";
        // Checking the existence of file
        if (!File.Exists(myfile)) {
            // Creating a file with below content
            string createText = "GFG" + Environment.NewLine;
            File.WriteAllText(myfile, createText);
        }
        // Adding extra texts
        string appendText = " is a CS portal." + Environment.NewLine;
        File.AppendAllText(myfile, appendText, Encoding.UTF8);
        // Opening the file to read from.
        string readText = File.ReadAllText(myfile);
        Console.WriteLine(readText);
    }
}

执行:

mcs -out:main.exe main.cs
mono main.exe
GFG
is a CS portal.

运行上述代码后,显示了上述输出,并创建了一个新文件,如下所示:

file.txt


推荐阅读
  • PBO(PixelBufferObject),将像素数据存储在显存中。优点:1、快速的像素数据传递,它采用了一种叫DMA(DirectM ... [详细]
  • vue引入echarts地图的四种方式
    一、vue中引入echart1、安装echarts:npminstallecharts--save2、在main.js文件中引入echarts实例:  Vue.prototype.$echartsecharts3、在需要用到echart图形的vue文件中引入:   importechartsfrom"echarts";4、如果用到map(地图),还 ... [详细]
  • java解析json转Map前段时间在做json报文处理的时候,写了一个针对不同格式json转map的处理工具方法,总结记录如下:1、单节点单层级、单节点多层级json转mapim ... [详细]
  • 可参照github代码:https:github.comrabbitmqrabbitmq-tutorialsblobmasterjavaEmitLogTopic.ja ... [详细]
  • 本文介绍了如何在Spring框架中使用AspectJ实现AOP编程,重点讲解了通过注解配置切面的方法,包括方法执行前和方法执行后的增强处理。阅读本文前,请确保已安装并配置好AspectJ。 ... [详细]
  • WPF项目学习.一
    WPF项目搭建版权声明:本文为博主初学经验,未经博主允许不得转载。一、前言记录在学习与制作WPF过程中遇到的解决方案。使用MVVM的优点是数据和视图分离,双向绑定,低耦合,可重用行 ... [详细]
  • C语言编写线程池的简单实现方法
    2019独角兽企业重金招聘Python工程师标准好文章,一起分享——有时我们会需要大量线程来处理一些相互独立的任务,为了避免频繁的申请释放线程所带 ... [详细]
  • 普通树(每个节点可以有任意数量的子节点)级序遍历 ... [详细]
  • 本文介绍了 Go 语言中的高性能、可扩展、轻量级 Web 框架 Echo。Echo 框架简单易用,仅需几行代码即可启动一个高性能 HTTP 服务。 ... [详细]
  • Leetcode学习成长记:天池leetcode基础训练营Task01数组
    前言这是本人第一次参加由Datawhale举办的组队学习活动,这个活动每月一次,之前也一直关注,但未亲身参与过,这次看到活动 ... [详细]
  • WCF类型共享的最佳实践
    在使用WCF服务时,经常会遇到同一个实体类型在不同服务中被生成为不同版本的问题。本文将介绍几种有效的类型共享方法,以解决这一常见问题。 ... [详细]
  • C#实现文件的压缩与解压
    2019独角兽企业重金招聘Python工程师标准一、准备工作1、下载ICSharpCode.SharpZipLib.dll文件2、项目中引用这个dll二、文件压缩与解压共用类 ... [详细]
  • 我有一个从C项目编译的.o文件,该文件引用了名为init_static_pool ... [详细]
  • 传统上,Java 的 String 类一直使用 char 数组来存储字符数据。然而,在 Java 9 及更高版本中,String 类的内部实现改为使用 byte 数组。本文将探讨这一变化的原因及其带来的好处。 ... [详细]
  • python模块之正则
    re模块可以读懂你写的正则表达式根据你写的表达式去执行任务用re去操作正则正则表达式使用一些规则来检测一些字符串是否符合个人要求,从一段字符串中找到符合要求的内容。在 ... [详细]
author-avatar
你是我的小心肝啊哈哈
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有