在我的項目中,我最終必須保存創建或上網的圖像並保存其他已創建的文件,我知道該如何操作。問題是,當我碰巧救我的圖片,我喜歡這樣的工作:使用相對路徑將項目中的文件和圖像保存到項目文件夾中
using (var imgClient = new WebClient())
{
Directory.CreateDirectory(imagesDirectory);
imgClient.DownloadFile(imgUrl, imagesDirectory + m_ObjNameToUse + "(" + abv+ ")" + objNumber + ".jpeg");
}
我稱之爲Directory.CreateDirectory
方法在這一刻,以確保該目錄創建圖像,防止崩潰之前始終創建。現在
我的問題是,它使用字符串imagesDirectory,這是尋找像這樣的硬編碼字符串:
string imagesDirectory = "C:\\Creation_Folder\\Object_Sets\\Images\\" + _objSetName+ "\\";
這一工程,截至目前。但是我正在開發中,這個項目最終會被髮布。我想將圖像保存在項目的「圖像」文件夾下,將_objSetName添加爲新文件夾以區分每個創建的圖像,以避免在同一文件中有太多圖像。
所以我的問題是如何告訴我的應用程序找到Images
文件夾中包含的項目,然後創建一個文件夾下_objSetName
?
嗨馬丁,你可以建議我最好的方式:https://stackoverflow.com/questions/49187419/store-excel-file-using-c-sharp-console-application-in-particular-location – BNN 2018-03-09 06:07:24
對不起,鏈接不起作用。 – 2018-03-09 14:21:19
是的我刪除了,檢查這個。 https://stackoverflow.com/questions/49192917/running-the-scheduler-twice-is-updating-the-file-with-the-earlier-file-in-consol/49193095 – BNN 2018-03-09 14:22:32