When we use Visual Studio to develop our program to access a file, we often encounter a common issue, that is"UnauthorizedAccessException". For this issue, I think there are some possible reasons:
1. The file is read-only  -- you have to modify the property of the file
2. Insufficient permission of the account  -- you maybe run the vs with administrator accouont
3. Wrong file path -- this is what I need to remember specially
e.g
FileStream fs = new FileStream(@"F:\GWork\WorkSpace\Serializable\demo.txt",FileMode.Create);
the code above, if you missing the "demo.txt" which in red, you will meet the issue which mentioned above.

相关文章:

  • 2021-09-14
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-06
  • 2022-01-06
  • 2021-08-08
  • 2021-05-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案