blob: 3ad5819f5f63471611f567f458d2dbcf7374dfff [file] [log] [blame]
Jim Van Verth329c5a62017-11-29 11:42:33 -05001#!/usr/bin/env python
2#
3# Copyright 2017 Google Inc.
4#
5# Use of this source code is governed by a BSD-style license that can be
6# found in the LICENSE file.
7
Martin Vejdarskibeaaf472020-03-03 13:53:20 +07008from __future__ import print_function
9
Jim Van Verth329c5a62017-11-29 11:42:33 -050010import os
11import sys
12
13dirpath, = sys.argv[1:]
14
Martin Vejdarskibeaaf472020-03-03 13:53:20 +070015print(os.path.isdir(dirpath))
Jim Van Verth329c5a62017-11-29 11:42:33 -050016
17