Fixed HttpServer.cs

This commit is contained in:
sta 2012-09-12 22:52:02 +09:00
parent 52ceb665fb
commit ce93711cf2
56 changed files with 5 additions and 3 deletions

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.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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);

Binary file not shown.