使用FileStream開啟檔案時發生存取被拒

2014年1月8日 星期三

在做圖片查詢時遇到存取被拒

語法如下:

string path="xxx"; //檔案路徑
using(FileStream fsm = new FileStream(path,FileMode.Open))
{


}


如果只要查詢建議將屬性設定要唯讀



string path="xxx"; //檔案路徑
using(FileStream fsm = new FileStream(path,FileMode.Open,FileAccess.Read))
{


}


參考來源:



http://msdn.microsoft.com/zh-tw/library/b6fz1x84(v=vs.110).aspx

Read more...