我正在尝试使用 c# wpf 应用程序创建一个文件夹并将一些图像复制到其中。
curName = txt_PoemName.Text;
// Specify a "currently active folder"
string activeDir = @"C:\Program Files\Default Company Name\Setup2\Poems";
//Create a new subfolder under the current active folder
string newPath = System.IO.Path.Combine(activeDir, curName);
// Create the subfolder
System.IO.Directory.CreateDirectory(newPath);
foreach(DictionaryEntry entry in curPoem){
string newFilePath = System.IO.Path.Combine(newPath, entry.Key.ToString() + Path.GetExtension(entry.Value.ToString()));
System.IO.File.Copy(entry.Value.ToString(), newFilePath, true);
}
我已成功创建文件夹和图像。我也可以通过应用程序访问它们。但我在本地磁盘上的位置看不到它们。当我重新启动机器时,应用程序也看不到它们。我该如何解决这个问题?