您好,登錄后才能下訂單哦!
這篇文章主要介紹“C#怎么獲取指定目錄下指定文件”,在日常操作中,相信很多人在C#怎么獲取指定目錄下指定文件問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C#怎么獲取指定目錄下指定文件”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
1.首先,需要指定獲取的文件夾,以及獲取文件的文件名;
文件夾:strLocalPath = System.Windows.Forms.Application.StartupPath + "\\ExcelTemplate\\";
文件名:temp.xlsx
2.代碼:
ExecutionResult result = new ExecutionResult(); result.Status = true; string strLocalPath = System.Windows.Forms.Application.StartupPath + "\\ExcelTemplate\\"; if (Directory.Exists(strLocalPath)) { foreach (string GCFile in Directory.GetFiles(strLocalPath, "temp.xlsx", SearchOption.TopDirectoryOnly)) { string fileName = Path.GetFileName(GCFile); string filename = Path.GetFileName(GCFile).Replace(".xlsx", "") + DateTime.Now.ToString("_yyyyMMdd") + ".xlsx"; try { File.Copy(strLocalPath + fileName, strLocalPath + "Temp\\" + filename, true); result = GetA31DayData(strLocalPath + "Temp\\" + filename); } catch (Exception ex) { result.Status = false; result.Message = "copy file to destination file exception. Msg:" + ex.Message; result.Anything = ex.Message; if (mesLog.IsErrorEnabled) { mesLog.Error(ex.StackTrace); } } } } else { result.Status = false; result.Message = "Directory not exists!"; } return result;
到此,關于“C#怎么獲取指定目錄下指定文件”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。