1

My question is very similar to this similar question on Linux.

I have received a catalog of images from Google Drive in multi-tiered (3 levels deep) sub directories that I need to upload to WordPress.

I thought it would be best to copy all images into 1 folder, making it easy to upload.

How do I move all images into 1 folder using a CMD command? (I'm on Windows 10)

Steve
  • 2,855
  • 18
  • 75
  • 123

1 Answers1

1

PowerShell

Get-ChildItem *.jpg -recurse | move-item -Destination 'C:\NewFolder'

PreCreate your destinaton folder or the command will fail.

Keith Miller
  • 10,694
  • 1
  • 20
  • 35