BuildReportTool.Util.IsFileInVersionControlMetadataFolder C# (CSharp) Method

IsFileInVersionControlMetadataFolder() public static method

public static IsFileInVersionControlMetadataFolder ( string filepath ) : bool
filepath string
return bool
	public static bool IsFileInVersionControlMetadataFolder(string filepath)
	{
		return IsFileInAPath(filepath, "/.svn/") ||
			IsFileInAPath(filepath, "/.git/") ||
			IsFileInAPath(filepath, "/.cvs/");
	}