mirror of
https://github.com/hama3254/Crunchyroll-Downloader-v3.0.git
synced 2024-11-15 04:35:06 +01:00
parent
c544479873
commit
b7ef74cb5e
Binary file not shown.
@ -1,5 +1,6 @@
|
|||||||
Imports System.ComponentModel
|
Imports System.ComponentModel
|
||||||
Imports System.IO
|
Imports System.IO
|
||||||
|
Imports System.Runtime.Remoting
|
||||||
Imports System.Text
|
Imports System.Text
|
||||||
Imports System.Windows.Forms.VisualStyles
|
Imports System.Windows.Forms.VisualStyles
|
||||||
|
|
||||||
@ -56,7 +57,12 @@ Module Subfolder
|
|||||||
Pfad = "\\?\" + Pfad
|
Pfad = "\\?\" + Pfad
|
||||||
End If
|
End If
|
||||||
|
|
||||||
File.WriteAllText(Pfad, Content, Encoding.UTF8)
|
Dim utf8WithoutBom2 As New System.Text.UTF8Encoding(False)
|
||||||
|
Using sink As New StreamWriter(Pfad, False, utf8WithoutBom2)
|
||||||
|
sink.WriteLine(Content)
|
||||||
|
End Using
|
||||||
|
|
||||||
|
'File.WriteAllText(Pfad, Content, Encoding.UTF8)
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user