BuildReportTool.Util.IsUselessFile C# (CSharp) Method

IsUselessFile() public static method

public static IsUselessFile ( string filepath ) : bool
filepath string
return bool
	public static bool IsUselessFile(string filepath)
	{
		return IsFileName(filepath, "Thumbs.db") || IsFileName(filepath, ".DS_Store") || IsFileName(filepath, "._.DS_Store");
	}