没有调试模式的控制台应用程序冻结

Console application freeze without debugging mode

我有一个简单的 c# 控制台应用程序,它将文件从闪存盘复制到另一个闪存盘。如果我 运行 这个应用程序在 Visual studio 中,一切正常,但如果我想 运行 通过 .exe 文件,应用程序不会启动,也没有任何反应。我试过Debug模式,Release模式,把framework调低。

有源代码:

class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("");
        Helper hlp = new Helper();
        for (int i = 0; i < hlp.GetDevices().Count; i++)
        {
            Console.WriteLine(hlp.GetDevices()[i]);
        }

        if (hlp.GetDevices().Count.Equals(2))
        {
            if (Directory.GetCurrentDirectory().Equals(hlp.GetDevices()[0]))
            {
                hlp.DirectoryCopy(hlp.GetDevices()[1].ToString(), ".", true);
            }
            else
            {
                hlp.DirectoryCopy(hlp.GetDevices()[0].ToString(), ".", true);
            }
            Console.WriteLine("Operace dokoncena.");
        }
        else
        {
            Console.WriteLine("Vlozte do PC 2 flashdisky.");
        }
        Console.ReadLine();
    }
}

和Helper.cs:

class Helper
{
    public List<string> GetDevices()
    {
        List<string> devices = new List<string>();
        var driveList = DriveInfo.GetDrives();

        foreach (DriveInfo drive in driveList)
        {
            if (drive.DriveType == DriveType.Removable)
            {
                devices.Add(drive.Name);
            }
        }
        return devices;
    }

    public void DirectoryCopy(string sourceDirName, string destDirName, bool copySubDirs)
    {
        try
        {
            DirectoryInfo dir = new DirectoryInfo(sourceDirName);

            if (!dir.Exists)
            {
                throw new DirectoryNotFoundException("Zdrojovy adresar neexistuje!" + sourceDirName);
            }

            DirectoryInfo[] dirs = dir.GetDirectories();

            if (!Directory.Exists(destDirName))
            {
                Directory.CreateDirectory(destDirName);
            }

            FileInfo[] files = dir.GetFiles();
            foreach (FileInfo file in files)
            {
                string temppath = Path.Combine(destDirName, file.Name);
                File.SetAttributes(file.DirectoryName, FileAttributes.Normal);
                file.CopyTo(temppath, true);
            }

            if (copySubDirs)
            {
                foreach (DirectoryInfo subdir in dirs)
                {
                    string temppath = Path.Combine(destDirName, subdir.Name);
                    DirectoryCopy(subdir.FullName, temppath, copySubDirs);
                }
            }
        }
        catch { }
    }
}

您是否尝试过 运行 管理员模式?

你的程序的一项改进存储设备列表比它更快;-)

List<string> deviceList = hlp.GetDevices();

然后当连接很多设备时你的程序会更快。

你试过没有U盘吗?只是为了获得 "Vlozte do PC 2 flashdisky." 消息。因为您的代码在 visual studio 2015 年使用 .NET Framework 4.5.2

对我来说正常工作

我试过关闭 Windows 智能屏幕,应用程序开始工作:)