Exécuter un exe à partir du code C #

163

J'ai une référence de fichier exe dans mon projet C #. Comment appeler cet exe à partir de mon code?

hari
la source

Réponses:

287
using System.Diagnostics;

class Program
{
    static void Main()
    {
        Process.Start("C:\\");
    }
}

Si votre application a besoin d'arguments cmd, utilisez quelque chose comme ceci:

using System.Diagnostics;

class Program
{
    static void Main()
    {
        LaunchCommandLineApp();
    }

    /// <summary>
    /// Launch the application with some options set.
    /// </summary>
    static void LaunchCommandLineApp()
    {
        // For the example
        const string ex1 = "C:\\";
        const string ex2 = "C:\\Dir";

        // Use ProcessStartInfo class
        ProcessStartInfo startInfo = new ProcessStartInfo();
        startInfo.CreateNoWindow = false;
        startInfo.UseShellExecute = false;
        startInfo.FileName = "dcm2jpg.exe";
        startInfo.WindowStyle = ProcessWindowStyle.Hidden;
        startInfo.Arguments = "-f j -o \"" + ex1 + "\" -z 1.0 -s y " + ex2;

        try
        {
            // Start the process with the info we specified.
            // Call WaitForExit and then the using statement will close.
            using (Process exeProcess = Process.Start(startInfo))
            {
                exeProcess.WaitForExit();
            }
        }
        catch
        {
             // Log error.
        }
    }
}
Logan B. Lehman
la source
1
startInfo.UseShellExecute = falseC'était une chose géniale ... Cela a fonctionné pour moi comme un charme! Je vous remercie! :)
RisingHerc
@ Le processus logganB.lehman se bloque pour toujours sur exeProcess.WaitForExit (); une idée?
Dragon
11

Exemple:

System.Diagnostics.Process.Start("mspaint.exe");

Compiler le code

Copiez le code et collez-le dans la méthode Main d'une application console. Remplacez "mspaint.exe" par le chemin d'accès à l'application que vous souhaitez exécuter.

Miksiii
la source
15
En quoi cela apporte-t-il plus de valeur que les réponses déjà créées? La réponse acceptée montre également l'utilisation deProcess.Start()
Par défaut
3
SO - c'est OK pour aider un débutant avec des exemples simplifiés, étape par étape avec de nombreux détails supprimés. Aussi ok pour utiliser des majuscules: P
DukeDidntNukeEm
J'avais juste besoin d'un moyen rapide d'exécuter l'exe et c'était vraiment utile. Merci :)
Sushant Poojary
7

Exemple:

Process process = Process.Start(@"Data\myApp.exe");
int id = process.Id;
Process tempProc = Process.GetProcessById(id);
this.Visible = false;
tempProc.WaitForExit();
this.Visible = true;
Hamid
la source
2

Je sais que cela est bien répondu, mais si vous êtes intéressé, j'ai écrit une bibliothèque qui rend l'exécution des commandes beaucoup plus facile.

Découvrez-le ici: https://github.com/twitchax/Sheller .

Twitchax
la source