Проблема с доступом к файлу
пытаюсь прочитать txt файл сл. образом:
___________________
private void GetDataFromFile()
{
StreamReader textFile = new StreamReader(@"c:\test.txt");
string fileContents = textFile.ReadToEnd();
textFile.Close();
}
___________________
При оттладке в VS 10 пишет: "Операция с файлом не разрешена. Отказано в доступе к пути "c:\test.txt"."
Вот директивы:
[SIZE="2"]using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Text;
using System.Windows.Data;
using System.Collections.Generic;
using System.Collections;
using System.IO;[/SIZE]
Использую framework 4.0 -(Visual Studio 10).
Как это можно исправить, может кто-то подсказать?