source: binary-improvements/7dtd-server-fixes/src/FileCache/DirectAccess.cs@ 325

Last change on this file since 325 was 325, checked in by alloc, 6 years ago

Code style cleanup (mostly whitespace changes, enforcing braces, using cleanup)

File size: 463 bytes
Line 
1using System;
2using System.IO;
3
4namespace AllocsFixes.FileCache {
5 // Not caching at all, simply reading from disk on each request
6 public class DirectAccess : AbstractCache {
7 public override byte[] GetFileContent (string filename) {
8 try {
9 if (!File.Exists (filename)) {
10 return null;
11 }
12
13 return File.ReadAllBytes (filename);
14 } catch (Exception e) {
15 Log.Out ("Error in DirectAccess.GetFileContent: " + e);
16 }
17
18 return null;
19 }
20 }
21}
Note: See TracBrowser for help on using the repository browser.