C# 0 The Complete Reference


PART I C h a p t e r   1 4



Download 4,07 Mb.
Pdf ko'rish
bet488/1096
Sana23.01.2022
Hajmi4,07 Mb.
#402171
1   ...   484   485   486   487   488   489   490   491   ...   1096
Bog'liq
C-Sharp 3 The Complete Reference Herbert Schildt


PART I

C h a p t e r   1 4 :  

U s i n g   I / O  

377


PART IPART I

/* Copy a file.

   To use this program, specify the name of the source

   file and the destination file. For example, to copy a

   file called FIRST.DAT to a file called SECOND.DAT, use

   the following command line:

   CopyFile FIRST.DAT SECOND.DAT

*/

using System;



using System.IO;

class CopyFile {

  static void Main(string[] args) {

    int i;

    FileStream fin;

    FileStream fout;

    if(args.Length != 2) {

      Console.WriteLine("Usage: CopyFile From To");

      return;

    }


    // Open input file.

    try {

      fin = new FileStream(args[0], FileMode.Open);

    } catch(IOException exc) {

      Console.WriteLine("Cannot Open Input File");

      Console.WriteLine(exc.Message);

      return;

    }


    // Open output file.

    try {

      fout = new FileStream(args[1], FileMode.Create);

    } catch(IOException exc) {

      Console.WriteLine("Cannot Open Output File");

      Console.WriteLine(exc.Message);

      fin.Close();

      return;

    }

    // Copy File



    try {

      do {

        i = fin.ReadByte();

        if(i != -1) fout.WriteByte((byte)i);

      } while(i != -1);

    } catch(IOException exc) {

      Console.WriteLine("Error Copying File");

      Console.WriteLine(exc.Message);

    }

    fin.Close();



www.freepdf-books.com


378

 

P a r t   I :  



T h e   C #   L a n g u a g e

    fout.Close();

  }

}


Download 4,07 Mb.

Do'stlaringiz bilan baham:
1   ...   484   485   486   487   488   489   490   491   ...   1096




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish