C#打开文件夹

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

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

        }
        #endregion

 

你可能感兴趣的:(C#)