Is there a way to open and save pictures from 1 folder at the same time? I'm creating a vi that resizes the picture but I want to do it with 1 folder at a time... Is this possible?
Use a file dialog to select a folder, then use "list folder" with your desired pattern (e.g. *.jpg). You get an array of all matching file names. Feed it into an autoindexing FOR loop to process all files.
Make sure you don't accidentally "process" and non-image files ;).