C#调用explorer资源管理器打开文件夹,不行啊

.Net技术 码拜 9年前 (2016-05-31) 1254次浏览
namespace NewDateFloder
{
    class Program
    {
        static void Main(string[] args)
        {
            string FloderPath = @"F:";
            string Date = DateTime.Now.ToString("yyyyMMddHHmmss").Substring(0, 8);
            if (!Directory.Exists(FloderPath + "\" + Date))//能否存在
            {
                Directory.CreateDirectory(FloderPath + "\" + Date);
                System.Diagnostics.Process.Start(FloderPath);
                System.Diagnostics.Process.Start("Explorer.exe",FloderPath);   
            }
            
        }
    }
}
解决方案

5

System.Diagnostics.Process.Start(FloderPath);
System.Diagnostics.Process.Start(“Explorer.exe”,FloderPath);
这两句,有其中一句就可以了

15

C#调用explorer资源管理器打开文件夹,不行啊本人瞧瞧FloderPath的值是什么吧……

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明C#调用explorer资源管理器打开文件夹,不行啊
喜欢 (0)
[1034331897@qq.com]
分享 (0)