Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
CCarreiras
in reply to: WCrihfield

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

EESignature