I'm learning to fork and exec using c language, and trying to use mv. By moving all the files in the .png format located in the image folder to the photos folder using exec, but when moving it encountered the following problems:
mv: cannot stat 'image/*.png': No such file or directory
The following is a program that I have created
#include <unistd.h>
#include <stdio.h>
int main(void)
{
char *move[] = {"mv", "image/*.png", "photos", NULL};
execv("/bin/mv", move);
}
When i try to move one file it works, but when moving multiple files with * it doesn't work. What is the solution to solve it?
Please help, thank you.