Fixed HttpServer.cs

master
sta 13 years ago
parent 52ceb665fb
commit ce93711cf2

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -257,9 +257,11 @@ namespace WebSocketSharp.Server {
public byte[] GetFile(string path) public byte[] GetFile(string path)
{ {
var filePath = _rootPath + path; var filePath = _rootPath + path;
#if WINDOWS
filePath = filePath.Replace("/", "\\"); var os = Environment.OSVersion;
#endif if (os.Platform != PlatformID.Unix && os.Platform != PlatformID.MacOSX)
filePath = filePath.Replace("/", "\\");
if (File.Exists(filePath)) if (File.Exists(filePath))
return File.ReadAllBytes(filePath); return File.ReadAllBytes(filePath);

Loading…
Cancel
Save