我的代碼是文件閱讀和C#編寫
try
{
string mtellThemePath = ConfigurationManager.AppSettings["mtellThemePath"] == null ? Server.MapPath("~/App_Themes/") : ConfigurationManager.AppSettings["mtellThemePath"].Contains("%%") ? Server.MapPath("~/App_Themes") : ConfigurationManager.AppSettings["mtellThemePath"];
string[] folderPaths = Directory.GetDirectories(mtellThemePath);
string currentSurveyThemeName = hfSurveyName.Value + "_" + hfClientId.Value;
string cloneSurveyThemeName = lstSurvey[0].SurveyName + "_" + Identity.Current.UserData.ClientId;
string cloneSurveyThemePath = mtellThemePath + "\\" + lstSurvey[0].SurveyName + "_" + Identity.Current.UserData.ClientId;
string cssFile = cloneSurveyThemePath + "\\" + cloneSurveyThemeName + ".css";
string skinFile = cloneSurveyThemePath + "\\" + cloneSurveyThemeName + ".skin";
string FileContentCSS = string.Empty;
string FileContentSkin = string.Empty;
foreach (string oFolder in folderPaths)
{
if (oFolder.Split('\\')[5] == currentSurveyThemeName)
{
string[] cssSkinFiles = Directory.GetFiles(oFolder);
foreach (string objFile in cssSkinFiles)
{
if (objFile.Split('\\')[6].Split('.')[1] == "css")
{
FileContentCSS = File.ReadAllText(objFile);
}
if (objFile.Split('\\')[6].Split('.')[1] == "skin")
{
FileContentSkin = File.ReadAllText(objFile);
}
}
}
}
Directory.CreateDirectory(cloneSurveyThemePath);
File.Create(cssFile);
File.Create(skinFile);
if (FileContentCSS != string.Empty)
{
File.WriteAllText(cssFile, FileContentCSS);
}
if (FileContentSkin != string.Empty)
{
File.WriteAllText(skinFile, FileContentSkin);
}
return lstSurvey[0].SurveyGuid;
}
catch (Exception ex)
{
throw ex;
}
這是給錯誤爲:
該進程無法訪問該文件 「d:\項目\ Mtelligence \ Mtelligence.Web \ App_Themes \ Clone_ForCloneTest_-1 \ Clone_ForCloneTest_-1.css' ,因爲它正在被另一個進程使用。
請幫我.......... 如何解決這個
蔭試圖讀取的CSS,從一個文件夾。皮膚文件,並在另一個文件夾寫那些相同的文件不同的名稱
如果您沒有儘可能清楚地解釋您正在嘗試做什麼,您將無法得到答案。通過提交源代碼並指出錯誤是假設其他開發人員會明白你在做什麼,但實際上他們所做的只是對你投票。我還沒有投票贊成你,我試圖給你一些反饋意見,以便你能夠儘早找到你的問題的根源。 – 2012-07-06 12:35:48
Iam正在嘗試從文件夾中讀取.css,.skin文件並將這些文件以不同名稱寫入另一個文件夾中 – user1309790 2012-07-06 12:38:01
您是否在文本編輯器中打開文件?錯誤信息是非常明顯的,你需要給出更多的信息,看看問題是什麼(無法找到其他程序的內容?想要打開它,即使它正在使用中?它看着錯誤的文件?是否需要把事情縮小一點... – Chris 2012-07-06 12:40:48