কম্পিউটার

C# এ পাঠ্য ফাইলগুলি পড়া এবং লেখা


StreamReader এবং StreamWriter ক্লাসগুলি পাঠ্য ফাইল থেকে ডেটা পড়ার এবং লেখার জন্য ব্যবহৃত হয়৷

একটি পাঠ্য ফাইল পড়ুন -

Using System;
using System.IO;

namespace FileApplication {
   class Program {
      static void Main(string[] args) {
         try {
            // Create an instance of StreamReader to read from a file.
            // The using statement also closes the StreamReader.
            using (StreamReader sr = new StreamReader("d:/new.txt")) {
               string line;

               // Read and display lines from the file until
               // the end of the file is reached.
               while ((line = sr.ReadLine()) != null) {
                  Console.WriteLine(line);
               }
            }
         } catch (Exception e) {
            Console.WriteLine("The file could not be read:");
            Console.WriteLine(e.Message);
         }
         Console.ReadKey();
      }
   }
}

একটি টেক্সট ফাইল লিখুন −

উদাহরণ

using System;
using System.IO;

namespace FileApplication {
   class Program {
      static void Main(string[] args) {
         string[] names = new string[] {"Jack", "Tom"};
   
         using (StreamWriter sw = new StreamWriter("students.txt")) {

            foreach (string s in names) {
               sw.WriteLine(s);
            }
         }

         // Read and show each line from the file.
         string line = "";
         using (StreamReader sr = new StreamReader("students.txt")) {
            while ((line = sr.ReadLine()) != null) {
               Console.WriteLine(line);
            }
         }
         Console.ReadKey();
      }
   }
}

আউটপুট

Jack
Tom

  1. কিভাবে ম্যাকে ফাইল এবং টেক্সট কপি এবং পেস্ট করবেন

  2. কিভাবে লিনাক্স টার্মিনালে টেক্সট, ফাইল এবং ফোল্ডার কপি এবং পেস্ট করবেন

  3. পিডিএফ ফাইলে টেক্সট কাট, কপি এবং পেস্ট করার 4টি উপায়

  4. দ্রুত এবং সহজ ধাপে কিভাবে অডিও ফাইলগুলিকে টেক্সটে রূপান্তর করবেন?