BitmapSaverWindow.CheckFileTemp C# (CSharp) Method

CheckFileTemp() private method

private CheckFileTemp ( string file ) : bool
file string
return bool
    private bool CheckFileTemp( string file )
    {
        bool there = false;

        if( fLength > 0 ) {
            foreach( string s in fList){
                if( Path.GetFileName( s ) == Path.GetFileName( file ) ) there = true;
            }
        }

        if( there && File.Exists( fPath + Path.GetFileName(file))) return true;

        return false;
    }