Hallo
Ich möchte den PostStream vom Httplistener als File niederschreiben.
cFileName := System.Io.Path.GetTempFileName ()
// fileStream := File.Create(cFilename)
// oRequest:InputStream.CopyTo(fileStream)
oRequest:InputStream.CopyTo(File.Create (cFilename))
// File.Close(cFilename)
Das File wird erstellt, aber muss man dann nicht noch das File nach dem schreiben zu machen ? Der File.Close () funktioniert nicht.
Gruss
Horst
Stream to file
Moderator: wriedmann
Stream to file
Hallo Horst,
Du darfst den Stream, den Dir File.Create() zurückgibt, nicht einfach verwerfen.
Sollte so ausschauen:
Ein Beispiel findest Du hier:
https://docs.microsoft.com/en-us/dotnet ... etcore-3.1
Logischerweise geht auch das begin using/end using in X#.
Wolfgang
Du darfst den Stream, den Dir File.Create() zurückgibt, nicht einfach verwerfen.
Sollte so ausschauen:
Code: Select all
oFile := File.Create (cFilename)
oRequest:InputStream.CopyTo(oFile)
oFile:Dispose()
https://docs.microsoft.com/en-us/dotnet ... etcore-3.1
Logischerweise geht auch das begin using/end using in X#.
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Stream to file
take a look at Log4Net, then you can change your logging later on if you want, to some other way of logging.