Using directory class gives a exception in the playground | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Using directory class gives a exception in the playground

I try to write some code to play around with the directory class. When I run this code I get an exception. Unhandled Exception: System.UnauthorizedAccessException: Access to the path '..\Playground\' is denied. In this line I set the path to c:\temp string MyPath = @"c:\Temp"; Why is the playground still looking in it local directory ? https://code.sololearn.com/cf9IzYD9Da6f

25th Jun 2017, 7:12 PM
sneeze
sneeze - avatar
4 Answers
+ 1
you asume that the playhground has a directory c:\temp\. Why? If you use string MyPath = Path.GetTempPath(); your program works without any exception https://code.sololearn.com/cpo9swHlzS9l/?ref=app
24th Jun 2017, 10:01 PM
Volker Milbrandt
Volker Milbrandt - avatar
+ 1
it is not possible to use your own computer this way. Temp-directory is on the machine the program is running on - that means here the machine of the playground. If your own computer is reachable from the internet you can give a public URL were write access is possible, but I wouldn't recommend that access.
25th Jun 2017, 8:30 PM
Volker Milbrandt
Volker Milbrandt - avatar
0
Thank you. It does work without a exception although I am not certain it is gonna work at al. When I run my code, the path I am getting is ..\Playground\\ the path: ..\Playground\\ does exist This was not the path I was looking for. I hoped to get a temporary path on my own computer. This is probably not going to happen because of the way the playground is set up.
25th Jun 2017, 7:12 PM
sneeze
sneeze - avatar
0
Thank you. During this experiment, I realised I needed to think different about the playground. I was not aware that is it a remote computer. Gone a use my own computer to experiment with directory folder access and gone a use the palyground for other coding things.
25th Jun 2017, 8:38 PM
sneeze
sneeze - avatar