管理

进程工具类 - C#小函数类推荐

Posted on 2024-11-09 08:00  lzhdim  阅读(2629)  评论(0编辑  收藏  举报

       此文记录的是进程操作的类库。

/***

    进程工具类

    Austin Liu 刘恒辉
    Project Manager and Software Designer

    E-Mail: lzhdim@163.com
    Blog:   http://lzhdim.cnblogs.com
    Date:   2024-01-15 15:18:00

    使用方法例子:
        foreach (string filePath in list)
        {
            ProcessExitUtil.IsProcessExit(filePath);
        }

***/

namespace Lzhdim.LPF.Utility
{
    using System.Diagnostics;

    /// <summary>
    /// 进程工具类
    /// </summary>
    public class ProcessExitUtil
    {
        /// <summary>
        /// 运行并判断进程是否退出
        /// </summary>
        /// <param name="appFilePath"></param>
        /// <returns></returns>
        public static bool IsProcessExit(string appFilePath)
        {
            // 启动应用
            Process process = Process.Start(appFilePath);

            if (process != null)
            {
                // 等待应用退出
                process.WaitForExit();

                return true;
            }
            else
            {
                return false;
            }
        }
    }
}

 

Copyright © 2000-2022 Lzhdim Technology Software All Rights Reserved