const bool operator ==(const FileType& file, const std::wstring& type)
	{
		return file.RelationType() == type;
	}
	const bool operator ==(const std::wstring& type, const FileType& file)
	{
		return type == file.RelationType();
	}