Images not referenced by solution explorer in Visual Studio 2013

I am using webcam to create images, i am saving that images in to the folder which belongs to another project. after saving the images its not reflecting in that folder, when i click show all files the images displays in the respective folder but its not rerenced.

Jon Skeet
people
quotationmark

Projects (pre-ASP.NET 5, anyway) specify exactly which files are within them - Solution Explorer isn't a file-system explorer.

If you right-click on the folder and choose "Add... Existing Item" then you should be able to add the new images to the project. Of course, if this is something which is happening dynamically, you probably don't want the files within the project, and should probably pick them up in a different way. (We have no idea what you're trying to achieve, so it's hard to give specific advice on that front.)

people

See more on this question at Stackoverflow