Create Files with FileInfo Class

With the FileInfo class, you can create new files, access information about the files, delete, and move files. This class also provides methods for opening, reading from, and writing to a file.
Console Application

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace pr5
{
class Program
{
static [...]