10-25-2023
06:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
10-25-2023
06:57 AM
Hi @WCrihfield, Thank you for your time and ideas.
Since the underscore is added by the naming process, i though in other process, to keep it simple and without messing with the conversion process.
The process is: after creating the conversion files (dxf), simple remove the first character in all files present in that specific folder, so, i added the code below to the end of the original code in it works like a charm:
'Iterate through the files And Rename them. For Each File As String In files Dim fileInfo As New System.IO.FileInfo(File) Dim newName As String = System.IO.Path.Combine(SavePath, fileInfo.Name.Substring(1)) System.IO.File.Move(File, newName) Next
CCarreiras