I have the following problem: I have a file that I downloaded from an internal system.
But this file doesn’t have an extension. The way I open it manually is by opening the Excel file, opening, browsing, and selecting the “All Files” option in the filter. This opens the Excel import wizard, and that’s the only way I can open it.
Hello @alexis.mendoza.rpa You can use Start Process activity and set FileName as "excel.exe" and Arguments as "C:\Path\To\Your\File".
OR
If you know it’s actually a CSV, TXT, or similar text format the use Copy File activity and rename file to include an extension like C:\Path\To\Your\File to C:\Path\To\Your\File.csv
Then use Read CSV or Excel Application Scope in UiPath to read file.
Hi, @alexis.mendoza.rpa Just rename the file and add “.xlsx” or “.csv” to the end of the filename using a Move File activity, then read it with Excel activities as usual. This matches what you do manually and works reliably every time in UiPath.
@alexis.mendoza.rpa use UiPath’s UI automation to open Excel, click “Open,” select “All Files,” pick your file, and walk through the import wizard using Click and Send Hotkey activities.