[C#] fix filename and Content-Disposition parsing on FileStream

This commit is contained in:
hacki11 2015-12-15 23:33:48 +01:00
parent 89f269969d
commit 322e7a4b4b

View File

@ -233,14 +233,17 @@ namespace {{packageName}}.Client
? Path.GetTempPath()
: Configuration.TempFolderPath;
var regex = new Regex(@"Content-Disposition:.*filename=['""]?([^'""\s]+)['""]?$");
var match = regex.Match(headers.ToString());
foreach (var header in headers)
{
var match = regex.Match(header.ToString());
if (match.Success)
{
string fileName = filePath + match.Value.Replace("\"", "").Replace("'", "");
string fileName = filePath + match.Groups[1].Value.Replace("\"", "").Replace("'", "");
File.WriteAllBytes(fileName, data);
return new FileStream(fileName, FileMode.Open);
}
}
}
var stream = new MemoryStream(data);
return stream;
}