控制台应用程序冻结,无需调试模式

时间:2015-12-04 08:23:42

标签: c# freeze usb-flash-drive

我有简单的c#控制台应用程序,它将文件从闪存盘复制到另一个闪存盘。如果我在Visual Studio中运行此应用程序,一切都很好,但如果我想通过.exe文件运行它,应用程序不会启动,没有任何事情发生。我尝试过调试模式,发布模式和更改框架以降低模式。

Ther是源代码:

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 { }
    }
}

3 个答案:

答案 0 :(得分:0)

您是否尝试在管理员模式下运行它?

你的程序的一个改进存储设备列表而不是更快; - )

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

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

答案 1 :(得分:0)

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

答案 2 :(得分:-1)

您是否尝试过没有任何闪存驱动器?只是为了得到“Vlozte do PC 2 flashdisky”。信息。因为您的代码在Visual Studio 2015中使用.NET framework 4.5.2正常工作