本文整理汇总了C#中CmisSync.Lib.RepoInfo.isPathIgnored方法的典型用法代码示例。如果您正苦于以下问题:C# RepoInfo.isPathIgnored方法的具体用法?C# RepoInfo.isPathIgnored怎么用?C# RepoInfo.isPathIgnored使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CmisSync.Lib.RepoInfo
的用法示例。
在下文中一共展示了RepoInfo.isPathIgnored方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IsDirectoryWorthSyncing
/// <summary>
/// Check whether the directory is worth syncing or not.
/// Directories that are not worth syncing include ignored, system, and hidden folders.
/// </summary>
private static bool IsDirectoryWorthSyncing(string localDirectory, RepoInfo repoInfo)
{
if (!localDirectory.StartsWith(repoInfo.TargetDirectory))
{
Logger.WarnFormat("Local directory is outside repo target directory. local={0}, repo={1}", localDirectory, repoInfo.TargetDirectory);
return false;
}
//Check for ignored path...
string path = localDirectory.Substring(repoInfo.TargetDirectory.Length).Replace("\\", "/");
if (repoInfo.isPathIgnored(path))
{
Logger.DebugFormat("Skipping {0}: hidden folder", localDirectory);
return false;
}
//Check system/hidden
DirectoryInfo directoryInfo = new DirectoryInfo(localDirectory);
if (directoryInfo.Exists)
{
if (directoryInfo.Attributes.HasFlag(FileAttributes.Hidden))
{
Logger.DebugFormat("Skipping {0}: hidden folder", localDirectory);
return false;
}
if (directoryInfo.Attributes.HasFlag(FileAttributes.System))
{
Logger.DebugFormat("Skipping {0}: system folder", localDirectory);
return false;
}
}
return true;
}