コード例 #1
0
        private void DeleteCommonFile(Message message)
        {
            var filePath = _dbController.GetCommonFilePath(message.StringMessage);

            if (filePath == null)
            {
                SendResult(false, "Файл не найден");
                return;
            }
            File.Delete(filePath);
            _dbController.DeleteCommonFile(message.StringMessage);
            SendResult(true, String.Empty);
        }