How can I move several files from one folder to another but only the pure .pdf and. xlsx
any example shared with me
How can I move several files from one folder to another but only the pure .pdf and. xlsx
any example shared with me
@Ivan_torres_oliva
You can use below code:
For each item in Directory.GetFiles(“C:\SourceFolder”,“*.xlsx”)
For each item in Directory.GetFiles(“C:\SourceFolder”,“*.pdf”)
(Please remove the space at the end of C:\DesFolder\ when you copy this code)
thanks bro
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.