BuildReportTool.Util.IsFileOkForDeleteAllOperation C# (CSharp) Method

IsFileOkForDeleteAllOperation() public static method

public static IsFileOkForDeleteAllOperation ( string filepath ) : bool
filepath string
return bool
	public static bool IsFileOkForDeleteAllOperation(string filepath)
	{
		return IsUselessFile(filepath) ||
			(!IsFileInBuildReportFolder(filepath) &&
			!IsFileInEditorFolder(filepath) &&
			!IsFileInVersionControlMetadataFolder(filepath) &&
			!IsFileAUnixHiddenFile(filepath));
	}