Entre otras cosas que pueden provocar este error:
No puede tener ciertos caracteres en la cadena PathFile completa.
Por ejemplo, estos caracteres bloquearán la función StreamWriter:
"/"
":"
puede haber otros caracteres especiales que también lo bloqueen. Descubrí que esto sucede cuando intenta, por ejemplo, poner un sello de fecha y hora en un nombre de archivo:
AppPath = Path.GetDirectoryName(giFileNames(0))
' AppPath is a valid path from system. (This was easy in VB6, just AppPath = App.Path & "\")
' AppPath must have "\" char at the end...
DateTime = DateAndTime.Now.ToString ' fails StreamWriter... has ":" characters
FileOut = "Data_Summary_" & DateTime & ".dat"
NewFileOutS = Path.Combine(AppPath, FileOut)
Using sw As StreamWriter = New StreamWriter(NewFileOutS , True) ' true to append
sw.WriteLine(NewFileOutS)
sw.Dispose()
End Using
Una forma de evitar este problema es reemplazar los caracteres problemáticos en NewFileOutS por otros benignos:
' clean the File output file string NewFileOutS so StreamWriter will work
NewFileOutS = NewFileOutS.Replace("/","-") ' replace / with -
NewFileOutS = NewFileOutS.Replace(":","-") ' replace : with -
' after cleaning the FileNamePath string NewFileOutS, StreamWriter will not throw an (Unhandled) exception.
¡Espero que esto le ahorre a alguien algunos dolores de cabeza ...!
fileName
?