简体   繁体   中英

How to fix this System.UnauthorizedAccessException? C#

have an application that accesses a directory and via the SoundPlayer class I access a file. Wav. I have the following C #:

public void PlaySound()
{
    try
    {
        while (true)
        {
            List<string> distinctMusicFile = GetMusicFile.Distinct().ToList();

            if (DataTableWorkCall.GetDataTableNew.Rows.Count > 0)
            {
                for (int i = 0; i < distinctMusicFile.Count; i++)
                {
                    StopSound();
                    player.SoundLocation = distinctMusicFile[i];
                    player.Play();
                    Thread.Sleep(Convert.ToInt32(ConfigurationSettings.AppSettings["MusicDuration"]) * 1000);
                    StopSound();
                }
            }
            else
                GetMusicFile.Clear();
        }
    }
    catch (ThreadAbortException e)
    {
        if (generateLog)
            log.LogTxt("Finished...\n");
    }
    catch (UnauthorizedAccessException e)
    {
        if (generateLog)
            log.LogTxt(e.ToString());
    }
}

This code is generating this exception:

Application: AndonGestamp_FormMonitoramento.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.UnauthorizedAccessException
Stack:
   at System.IO.__Error.WinIOError(Int32, System.String)
   at System.IO.FileStream.Init(System.String, System.IO.FileMode,         System.IO.FileAccess, Int32, Boolean, System.IO.FileShare, Int32, System.IO.FileOptions, SECURITY_ATTRIBUTES, System.String, Boolean, Boolean)
   at System.IO.FileStream..ctor(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, Int32, System.IO.FileOptions)
   at System.IO.File.Create(System.String)
   at AndonGestamp_FormMonitoramento.Utils.Log.LogTxt(System.String)
   at AndonGestamp_FormMonitoramento.Utils.Music.PlaySound()
   at AndonGestamp_FormMonitoramento.Andon.ThreadPlayMusic()
   at System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
   at System.Threading.ThreadHelper.ThreadStart()

Log generation:

public void LogTxt(string msg)
    {
        string logDirectory = ConfigurationSettings.AppSettings["Log"].ToString();

        if (!System.IO.File.Exists(logDirectory))
        {
            System.IO.File.Create(logDirectory).Close();
        }

        if (msg != null)
        {
            System.IO.TextWriter file = System.IO.File.AppendText(logDirectory);
            file.WriteLine(msg + " " + DateTime.Now + "\n");
            file.Close();
        }

    }

The function log.LogTxt (String) creates a txt file, can this be? Problems regarding permissions? Can anyone help me? Thanks!

The line

at AndonGestamp_FormMonitoramento.Utils.Log.LogTxt(System.String)

shows that the exception stems from LogTxt.

Your conclusion that it is a permission problem is correct.
If you cannot find the problem through visual inspection of your code; trace to as close as you can to the row that fails and start ProcessMonitor to find where/what your code tries to reach.

也许在某个帐户下运行的应用程序对该目录没有写权限。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM