Hi @EdiSM ,
You need to Create 2 Folders For Input 1 Folder(FolderA) and For Output 1 Folder(FolderB).
Then just try the below code.
It will get all the files in FolderA.
Convert all the Files in Folder A in Xls to Xlsv in Folder B
Delete the Folder A Files and for Further use you can use Folder B files which are in .xlsx format.

Code:
Folder.GetFiles Folder: $'''C:\\Users\\\\Desktop\\Projects\\FolderA''' FileFilter: $'''*''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.NoSort SortDescending1: False SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Files=> Files
LOOP FOREACH CurrentItem IN Files
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: CurrentItem.FullName Visible: True ReadOnly: False Instance=> ExcelInstance
Excel.SaveExcel.SaveAs Instance: ExcelInstance DocumentFormat: Excel.ExcelFormat.OpenXmlWorkbook DocumentPath: $'''C:\\Users\\Desktop\\Projects\\FolderB\\%CurrentItem.NameWithoutExtension%'''
Excel.CloseExcel.Close Instance: ExcelInstance
File.Delete Files: CurrentItem.FullName
END
(Note:- if you got your solution you can mark as solution and gives kudos)
Thanks & Regards
Vishnu Reddy