Converts lock-null item to folder.
Engine calls this method when lock-null item must be converted to a folder.
public WebDAVResponse ConvertToFolder()
{
FileInfo file = (FileInfo)base.fileSystemInfo;
string path = file.FullName;
file.Delete();
Directory.CreateDirectory(path);
return new CreatedResponse();
}
ILockNull Interface | ITHit.WebDAV.Server Namespace