I have a folder 'C:\data' with a lot of PDF files and I want to convert those files to CommonsMultipartFile
spring class.
In my project, I am using spring class CommonsMultipartFile
in order to read file from the request and manipulate them. I prefer to reuse this project also for Files - java class.
I did:
File folder = new File(path);
File[] listOfFiles = folder.listFiles();
and I want to convert to: List of CommonsMultipartFile;
Thanks!!!