protected virtual string GetDeleteFilesStatement(string files)
        {
            const string DELETE_FILES =
                @"<MEDIA><FOLDER guid=""{0}""><FILES action=""deletefiles"">{1}</FILES></FOLDER></MEDIA>";

            return(DELETE_FILES.RQLFormat(Folder, files));
        }
        protected override string GetDeleteFilesStatement(string files)
        {
            const string DELETE_FILES =
                @"<MEDIA loginguid=""{0}""><FOLDER guid=""{1}"" subdirguid=""{1}"" tempdir=""{2}{0}\""><FILES action=""deletefiles"">{3}</FILES></FOLDER></MEDIA>";

            return(DELETE_FILES.RQLFormat(Session.LogonGuid, Folder,
                                          SecurityElement.Escape(
                                              Session.ServerManager.ApplicationServers.Current.TempDirectoryPath), files));
        }