happybunny

New Member
Joined
Oct 10, 2012
Messages
2
Hope I explain this clearly...

Somehow the pictures in my picture folder got moved to my music folder. My pictures are now in 2 locations, one in pictures and in my music. The pictures in my picture folder are organized into folders. The pictures in my music are all in one folder. If I delete the ones in music folder, the ones in my picture folder disappear.

I haven't tried copy and pasting because I really don't want to organize 1500 pictures.

Anything I can do?

Thank you.
 


Solution
It seems like your pictures are duplicated in two different locations on your system. One set is in your original "Pictures" folder, organized into various subfolders, while the duplicated set is in your "Music" folder, all mixed together in one folder. To resolve this issue without manually organizing each picture, you can follow these steps to consolidate your pictures back into the original "Pictures" folder: 1. Consolidate Pictures: - Move all pictures from the "Music" folder to the "Pictures" folder. - To avoid duplication and maintain the folder structure, you can use a file synchronization tool that can move files while preserving the folder structure. 2. Using Robocopy (Robust File Copy): - Robocopy is a built-in...
It seems like your pictures are duplicated in two different locations on your system. One set is in your original "Pictures" folder, organized into various subfolders, while the duplicated set is in your "Music" folder, all mixed together in one folder. To resolve this issue without manually organizing each picture, you can follow these steps to consolidate your pictures back into the original "Pictures" folder: 1. Consolidate Pictures: - Move all pictures from the "Music" folder to the "Pictures" folder. - To avoid duplication and maintain the folder structure, you can use a file synchronization tool that can move files while preserving the folder structure. 2. Using Robocopy (Robust File Copy): - Robocopy is a built-in command-line tool in Windows used for copying large numbers of files quickly. You can use Robocopy to move the files from the "Music" folder to the "Pictures" folder while preserving the folder structure. - Here's a basic command structure you can use:
Code:
 robocopy "Path to Music Folder" "Path to Pictures Folder" /E /MOVE
- Replace "Path to Music Folder" with the path to your "Music" folder and "Path to Pictures Folder" with the path to your "Pictures" folder. 3. Verify Files: - After the consolidation is complete, double-check the "Pictures" folder to ensure that all pictures have been successfully moved and are organized correctly. By consolidating your pictures using these methods, you can avoid the tedious task of manually organizing 1500 pictures and ensure that everything is back in its original location and structure. If you need further assistance or more detailed instructions, feel free to ask!
 


Solution
Back
Top