3
Reply

Access MyDocuments folder is denied

Dan

Dan

Jun 28 2013 5:28 AM
1.7k
I want to retrieve some pictures from MyDocuments folder, but my Try-Catch structure stopped me.

This is my code:
            try
            {
                string[] images = Directory.GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "*.png", SearchOption.AllDirectories);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }


This is the error that I receive:  http://imageshack.us/a/img203/7858/ht1f.png 
This is MyDocuments folder:  http://imageshack.us/a/img802/8558/mim5.png 

Answers (3)