sharepoint 2007 统计所有网站集中视频文件的总大小

29 篇文章 0 订阅

视频文件类型为:.avi .mov .rm .rmvb .wmv .asf .asx .mpg .mpeg .3gp .mp4 .flv .mkv .vob

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Administration;
using System.IO;
using System.Web;
using System.Text.RegularExpressions;
using System.Data;


namespace GetVideoFiles
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("This tool is designed for find video fies in all Site collection.eg: .avi,.mov,.rm,.rmvb,.wmv,.asf,.asx,.mpg,.mpeg,.3gp,.mp4,.flv,.mkv,.vob");
            string pattern = @"(\.avi|\.mov|\.rm|\.rmvb|\.wmv|\.asf|\.asx|\.mpg|\.mpeg|\.3gp|\.mp4|\.flv|\.mkv|\.vob)$";
            Regex regex = new Regex(pattern, RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.Singleline);

            InitionFile();
            Console.WriteLine("Please input the web url:");
            String weburl = Console.ReadLine();
            Uri webAppUri = new Uri(weburl);
            SPWebApplication webApplication = SPWebApplication.Lookup(webAppUri);

            Console.WriteLine("Name\tSize\tSizeOfVersions\tTotalSize\tWebUrl");
            writer.WriteLine("Name\tSize\tSizeOfVersions\tTotalSize\tWebUrl");


            Int64 allSitesSizes =0;
            Int64 allSitesHistorySizes = 0;
            Int64 allSitesTotalSizes = 0;
            foreach (SPSite site in webApplication.Sites)         
             {
                DataTable oDtRawData = null;
                oDtRawData = site.StorageManagementInformation(SPSite.StorageManagementInformationType.Document, SPSite.StorageManagementSortOrder.Decreasing, SPSite.StorageManagementSortedOn.Size,300000);
                /*  // if you wan to see column names, loop through all the columns and find out the names and grab the needed one.
                foreach (DataColumn oColumn in oDtRawData.Columns)
                        {
                             Console.WriteLine(oColumn.ColumnName);               
                          }
               */
                string siteUrl = site.Url;
                Int64 sizes = 0;
                Int64 historySizes = 0;
                Int64 totalSizes = 0;
                foreach (DataRow oRow in oDtRawData.Rows)
                 {                    
                    //Console.WriteLine("Processing......" + oRow["LeafName"].ToString());                                
                     if (regex.IsMatch(oRow["LeafName"].ToString()))
                     {
                         string size1 = oRow["Size"].ToString();
                         string historySize1 = oRow["SizeOfVersions"].ToString();
                         string totalSize1 = oRow["TotalSize"].ToString();
                         Int64 size = Convert.ToInt64(size1);
                         Int64 historySize = Convert.ToInt64(historySize1);
                         Int64 totalSize = Convert.ToInt64(totalSize1);
                         sizes = sizes + size;
                         historySizes = historySizes + historySize;
                         totalSizes = totalSizes + totalSize;
                        
                        // Console.WriteLine(oRow["LeafName"].ToString() + "\t" + oRow["Size"].ToString() + "\t" + oRow["SizeOfVersions"].ToString() + "\t" + oRow["TotalSize"].ToString() + "\t" + oRow["WebUrl"].ToString());
                         writer.WriteLine(oRow["LeafName"].ToString() + "\t" + oRow["Size"].ToString() + "\t" + oRow["SizeOfVersions"].ToString() + "\t" + oRow["TotalSize"].ToString() + "\t" + oRow["WebUrl"].ToString());
                        
                     }

                    }
                if(totalSizes != 0)
                {
                    Console.WriteLine("#SUM\t{0}MB\t{1}MB\t{2}MB\t{3}", Math.Round(sizes / 1024.0f / 1024.0f, 2), Math.Round(historySizes / 1024.0f / 1024.0f, 2), Math.Round(totalSizes / 1024.0f / 1024.0f, 2), siteUrl);
                    writer.WriteLine("#SUM\t{0}MB\t{1}MB\t{2}MB\t{3}", Math.Round(sizes / 1024.0f / 1024.0f, 2), Math.Round(historySizes / 1024.0f / 1024.0f, 2), Math.Round(totalSizes / 1024.0f / 1024.0f, 2), siteUrl);
               
                }
               allSitesSizes = allSitesSizes+sizes;
               allSitesHistorySizes = allSitesHistorySizes+historySizes;
               allSitesTotalSizes = allSitesTotalSizes+totalSizes;
              
            }
            Console.WriteLine("#AllSitesSUM\t{0}MB\t{1}MB\t{2}MB", Math.Round(allSitesSizes / 1024.0f / 1024.0f,2), Math.Round(allSitesHistorySizes / 1024.0f / 1024.0f,2), Math.Round(allSitesTotalSizes / 1024.0f / 1024.0f,2));
            writer.WriteLine("#AllSitesSUM\t{0}MB\t{1}MB\t{2}MB", Math.Round(allSitesSizes / 1024.0f / 1024.0f, 2), Math.Round(allSitesHistorySizes / 1024.0f / 1024.0f, 2), Math.Round(allSitesTotalSizes / 1024.0f / 1024.0f, 2));

            CloseFile();
           
        }


        static StreamWriter writer;
        static void InitionFile()
        {
            writer = new StreamWriter("videos.txt", false);
        }
        static void CloseFile()
        {
            writer.Flush();
            writer.Close();
        }

        static void WriteLine(string msg)
        {
            writer.WriteLine(msg);
        }
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值