Q:

C# program to write text to a file

0

Given text, and we have to write it into a file using C# program.

File.WriteAllText()

This is a static method of "File" class, which is used to write all text (passed as an argument) in a file. Note: If the file does not exist at specified location, this method creates file first and then write all text to the file.

Syntax:

void File.WriteAllText(path, content);

Parameters:

  1. path - Filename with its location.
  2. content - Text to be written into file.
  3.  

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

using System;

//We need to include this namespace for file handling.
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main()
        {
            string s;

            Console.WriteLine("Enter text to Write into File : ");
            s = Console.ReadLine();

            File.WriteAllText("ABC.TXT",s);
            Console.WriteLine("\nFile Creation Done");
        }
    }
}

Output

Enter text to Write into File :
Hello , This is a sample program for writing text into file.

File Creation Done

Note: In above program, we need to remember, when we use "File" class, System.IO namespace must be included in the program.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# file handling (File class) solved programs/examples

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to read text from a file... >>
<< C# program to get file creation time...