i am trying to create a folder and copy some images into it using c# wpf application.
            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);
                }
i have successfully created the folder and images. and also i can access them via application. but i cant see them in the location on my local disk. when i restart the machine , then application also cant see them.how can i solve this?
 
     
     
    