I want to know if there is anything that lets me do the following:
folder1 has files "readfile1" "f2" "fi5"
The only thing I know is that I need to read the file which starts with readfile
, and I don't know what's there in the name after the string readfile
. Also, I know that no other file in the directory starts with readfile
.
How do I open this file with the open
command?
Thank you.