merge commit

This commit is contained in:
robvde 2013-12-23 10:52:01 +04:00
commit 5193588f18
13 changed files with 2046 additions and 1381 deletions

View file

@ -83,6 +83,7 @@ namespace WebsitePanel.Providers.OS
void ExecuteSyncActions(FileSyncAction[] actions);
void SetQuotaLimitOnFolder(string folderPath, string shareNameDrive, string quotaLimit, int mode, string wmiUserName, string wmiPassword);
int GetQuotaLimitOnFolder(string folderPath, string wmiUserName, string wmiPassword);
void DeleteDirectoryRecursive(string rootPath);
// File Services

View file

@ -46,6 +46,7 @@ namespace WebsitePanel.Providers.OS
private bool isPublished;
private WebDavFolderRule[] rules;
private string url;
private int fsrmQuotaMB;
public SystemFile()
{
@ -62,6 +63,12 @@ namespace WebsitePanel.Providers.OS
this.changed = changed;
}
public int FRSMQuotaMB
{
get { return fsrmQuotaMB; }
set { fsrmQuotaMB = value; }
}
public string FullName
{
get { return fullName; }