update file system methods

This commit is contained in:
Luke
2015-09-13 17:32:02 -04:00
parent 0f743205c4
commit 14de062681
129 changed files with 482 additions and 872 deletions

View File

@@ -851,9 +851,9 @@ namespace MediaBrowser.Server.Startup.Common
if (generateCertificate)
{
if (!File.Exists(certPath))
if (!FileSystemManager.FileExists(certPath))
{
Directory.CreateDirectory(Path.GetDirectoryName(certPath));
FileSystemManager.CreateDirectory(Path.GetDirectoryName(certPath));
try
{