dir_is_writeable.py 228 B

1234567891011
  1. # SPDX-License-Identifier: Apache-2.0
  2. import os
  3. import sys
  4. def main():
  5. is_writeable = os.access(sys.argv[1], os.W_OK)
  6. return_code = int(not is_writeable)
  7. sys.exit(return_code)
  8. if __name__ == "__main__":
  9. main()