wsp-10288 Remove "LocationDrive" In settings providers WebsitePanel.Providers.OS.Windows*

This commit is contained in:
dev_amdtel 2014-12-15 20:46:06 +04:00
parent c752bb5b44
commit 912c0dfe7c
8 changed files with 307 additions and 4 deletions

View file

@ -80,10 +80,12 @@ namespace WebsitePanel.Providers.OS
{
Log.WriteStart("SetQuotaLimitOnFolder");
Log.WriteInfo("FolderPath : {0}", folderPath);
Log.WriteInfo("ShareNameDrive : {0}", shareNameDrive);
Log.WriteInfo("QuotaLimit : {0}", quotaLimit);
string path = Path.Combine(shareNameDrive + @":\", folderPath);
string path = folderPath;
if (shareNameDrive != null)
path = Path.Combine(shareNameDrive + @":\", folderPath);
Runspace runSpace = null;
try