How to use StreamWriter.WriteAsync and catch exceptions?

六月ゝ 毕业季﹏ 提交于 2019-12-24 15:17:40

问题


I have simple function to write files.

public static void WriteFile(string filename, string text)
{
    StreamWriter file = new StreamWriter(filename);
    try
    {
        file.Write(text);
    }
    catch (System.UnauthorizedAccessException)
    {
        MessageBox.Show("You have no write permission in that folder.");
    }
    catch (System.Exception e)
    {
        MessageBox.Show(e.Message);
    }

    file.Close();
}

How can I convert my code to use StreamWriter.WriteAsync with try-catch?


回答1:


async public static void WriteFile(string filename, string text)
{
    StreamWriter file = null;
    try
    {
        file = new StreamWriter(filename);
        await file.WriteAsync(text);
    }
    catch (System.UnauthorizedAccessException)
    {
        MessageBox.Show("You have no write permission in that folder.");
    }
    catch (System.Exception e)
    {
        MessageBox.Show(e.Message);
    }
    finally
    {
        if (file != null) file.Close();
    }
}


来源:https://stackoverflow.com/questions/18943154/how-to-use-streamwriter-writeasync-and-catch-exceptions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!