C#打开文件夹

#region 打开文件夹
        private void buttonOpenFolderPath_Click(object sender, EventArgs e)
        {
           
            try
            {
                System.Diagnostics.Process.Start(_path);

            }
            catch
            {
                MessageBox.Show("存储位置未设置!");
            }

        }
        #endregion

猜你喜欢

转载自blog.csdn.net/dyxcome/article/details/82432087