﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-布尔的cnblogs boolean-最新评论</title><link>http://www.cnblogs.com/boolean/CommentsRSS.aspx</link><description>.net web developer boolean javascript ext prototype dom nvelocity nhibernate log4net spring.net aspect db4o json ioc aop objectbuilder mvc pattern workflow memcached Lucene unity LazyParser survey cms mef vss svn oa cms crm portal ofc gis projectmanager openflashchart gis mapguide osgi nodejs</description><language>zh-cn</language><pubDate>Fri, 13 Jan 2012 05:13:18 GMT</pubDate><lastBuildDate>Fri, 13 Jan 2012 05:13:18 GMT</lastBuildDate><generator>cnblogs</generator><item><title>Re:测试组，请用VSS命令行获取最新版本</title><link>http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167860</link><dc:creator>布尔</dc:creator><author>布尔</author><pubDate>Wed, 03 Aug 2011 08:33:57 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167860</guid><description><![CDATA[@羽微
好久不用vss了，不晓得怎么弄，你可以公开一下你的方法。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">布尔</a> 2011-08-03 16:33 <a href="http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167860#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:测试组，请用VSS命令行获取最新版本</title><link>http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167846</link><dc:creator>羽微</dc:creator><author>羽微</author><pubDate>Wed, 03 Aug 2011 08:18:02 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167846</guid><description><![CDATA[我搞定了<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">羽微</a> 2011-08-03 16:18 <a href="http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167846#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:测试组，请用VSS命令行获取最新版本</title><link>http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167445</link><dc:creator>羽微</dc:creator><author>羽微</author><pubDate>Wed, 03 Aug 2011 02:09:33 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167445</guid><description><![CDATA[这种方式取下来的VSS文件的时间，是启动这个Bat文件的时间。
有么有方法可以将在VSS上取下来的文件的时间，显示的是此文件在VSS的上更新的时刻？<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">羽微</a> 2011-08-03 10:09 <a href="http://www.cnblogs.com/boolean/archive/2011/08/03/970959.html#2167445#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:“谁养鱼”的表格解答步骤</title><link>http://www.cnblogs.com/boolean/archive/2011/04/09/685776.html#2065941</link><dc:creator>alex_</dc:creator><author>alex_</author><pubDate>Sat, 09 Apr 2011 07:57:28 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2011/04/09/685776.html#2065941</guid><description><![CDATA[：“抽Blue Master的人喝啤酒只能是2列或5列，假设为第2列，则因抽Blends香烟的人有一个喝水的邻居，他只能在第4列，这样丹麦人喝茶就没有地方放了”

这一句我也严重不同意。没有道理。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">alex_</a> 2011-04-09 15:57 <a href="http://www.cnblogs.com/boolean/archive/2011/04/09/685776.html#2065941#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:用c#添加Networkservice对文件夹的写权限</title><link>http://www.cnblogs.com/boolean/archive/2011/03/30/833173.html#2058561</link><dc:creator>Charming.Z</dc:creator><author>Charming.Z</author><pubDate>Wed, 30 Mar 2011 10:24:40 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2011/03/30/833173.html#2058561</guid><description><![CDATA[/// &lt;summary&gt;
    /// 添加指定目录的权限
    /// &lt;/summary&gt;
    /// &lt;param name=&quot;strFileName&quot;&gt;目录&lt;/param&gt;
    /// &lt;param name=&quot;strAccount&quot;&gt;帐户&lt;/param&gt;
    /// &lt;param name=&quot;strUserRights&quot;&gt;权限字符串：R、C、W、F&lt;/param&gt;
    public static void AddDirectorySecurity(string strFileName, string strAccount, string strUserRights)
    {
        try
        {
            FileSystemRights fsr = new FileSystemRights();
            if (strUserRights.IndexOf(&quot;R&quot;) &gt;= 0)
            {
                fsr = fsr | FileSystemRights.Read;
            }
            if (strUserRights.IndexOf(&quot;C&quot;) &gt;= 0)
            {
                fsr = fsr | FileSystemRights.ChangePermissions;
            }
            if (strUserRights.IndexOf(&quot;F&quot;) &gt;= 0)
            {
                fsr = fsr | FileSystemRights.FullControl;
            }
            if (strUserRights.IndexOf(&quot;W&quot;) &gt;= 0)
            {
                fsr = fsr | FileSystemRights.Write;
            }
            bool blnOK;
            DirectoryInfo dInfo = new DirectoryInfo(strFileName);
            DirectorySecurity dSecurity = dInfo.GetAccessControl();
            InheritanceFlags iFlags = new InheritanceFlags();
            iFlags = InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit;
            FileSystemAccessRule fsar = new FileSystemAccessRule(strAccount, fsr, iFlags, PropagationFlags.None, AccessControlType.Allow);
            dSecurity.ModifyAccessRule(AccessControlModification.Add, fsar, out blnOK);
            dInfo.SetAccessControl(dSecurity);
        }
        catch { }  //产生错误时直接跳过
    }<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">Charming.Z</a> 2011-03-30 18:24 <a href="http://www.cnblogs.com/boolean/archive/2011/03/30/833173.html#2058561#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:纪念一起工作三年的朋友的离开</title><link>http://www.cnblogs.com/boolean/archive/2010/08/06/1777175.html#1888411</link><dc:creator>布尔</dc:creator><author>布尔</author><pubDate>Fri, 06 Aug 2010 05:40:49 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2010/08/06/1777175.html#1888411</guid><description><![CDATA[@白的天空
当时是挺难受的<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">布尔</a> 2010-08-06 13:40 <a href="http://www.cnblogs.com/boolean/archive/2010/08/06/1777175.html#1888411#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:纪念一起工作三年的朋友的离开</title><link>http://www.cnblogs.com/boolean/archive/2010/08/06/1777175.html#1888406</link><dc:creator>白的天空</dc:creator><author>白的天空</author><pubDate>Fri, 06 Aug 2010 05:36:40 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2010/08/06/1777175.html#1888406</guid><description><![CDATA[铁打的营盘，流水的兵。
程序员的工作就是这样。
很少见强哥这么伤感<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">白的天空</a> 2010-08-06 13:36 <a href="http://www.cnblogs.com/boolean/archive/2010/08/06/1777175.html#1888406#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:话说公司近况——没有奖励</title><link>http://www.cnblogs.com/boolean/archive/2010/07/21/1473039.html#1876379</link><dc:creator>Tony Zhou</dc:creator><author>Tony Zhou</author><pubDate>Wed, 21 Jul 2010 05:21:50 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2010/07/21/1473039.html#1876379</guid><description><![CDATA[悲剧<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">Tony Zhou</a> 2010-07-21 13:21 <a href="http://www.cnblogs.com/boolean/archive/2010/07/21/1473039.html#1876379#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:我的同学分布图，哈哈。</title><link>http://www.cnblogs.com/boolean/archive/2010/05/30/1739738.html#1836195</link><dc:creator>泰城公子</dc:creator><author>泰城公子</author><pubDate>Sun, 30 May 2010 12:31:23 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2010/05/30/1739738.html#1836195</guid><description><![CDATA[顶起来~~<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">泰城公子</a> 2010-05-30 20:31 <a href="http://www.cnblogs.com/boolean/archive/2010/05/30/1739738.html#1836195#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:话说公司近况——没有奖励</title><link>http://www.cnblogs.com/boolean/archive/2010/04/17/1473039.html#1803764</link><dc:creator>司徒正美</dc:creator><author>司徒正美</author><pubDate>Sat, 17 Apr 2010 04:02:47 GMT</pubDate><guid>http://www.cnblogs.com/boolean/archive/2010/04/17/1473039.html#1803764</guid><description><![CDATA[悲剧，不是血汗工厂吗？还不快跑<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/boolean/" target="_blank">司徒正美</a> 2010-04-17 12:02 <a href="http://www.cnblogs.com/boolean/archive/2010/04/17/1473039.html#1803764#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>
