Execute File : File Command « File Stream « C# / C Sharp






Execute File

     
using System;
using System.Diagnostics;
using System.IO;

public static class FileInfoExt
{
    public static bool ExecFile(this FileInfo iFileinfo, string iArguments)//todo: test it
    {
        try
        {
            if (iFileinfo.Exists)
            {
                Process ProcessObj = new Process();
                ProcessObj.StartInfo.FileName = iFileinfo.FullName;
                if (string.IsNullOrEmpty(iArguments) == false)
                {
                    ProcessObj.StartInfo.Arguments = iArguments;
                }
                ProcessObj.StartInfo.UseShellExecute = false;
                ProcessObj.StartInfo.CreateNoWindow = true;
                ProcessObj.StartInfo.RedirectStandardOutput = true;
                ProcessObj.Start();
                return true;
            }
        }
        catch (Exception)
        {
        }
        return false;
    }
}

   
    
    
    
    
  








Related examples in the same category

1.C# Implementation of the File Copy Command
2.Use the FileInfo Class to Delete Files with Ease
3.File Move Implementation
4.Rename File Name
5.Rename File Extension
6.Backup File
7.Copy directory
8.Find string in a file
9.Converts a number of bytes to a shorter, more readable string representation
10.Compares the specified file1. This method accepts two strings the represent two files to compare.
11.File Renamer
12.Format File Size
13.Is File Existed
14.Is File readable or writeable
15.Replace in file
16.Send a file to the recycle bin
17.Copy file and folder
18.Gets last write time for a file.
19.Gets the file size text.
20.Get File Bytes And Readable Size Information
21.Copy folder
22.Empty a Folder