X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_lib%2Fm_shutil.py;h=b691abc45befad3cd2282731eb89762f84583344;hb=fea5b1d068bc94adce899a804a643bf24b8a9777;hp=10e5ebf552e4eaaf25f1fc2fe59b9ffd0e498704;hpb=d7c459a9f979c4978cf07ff11056512a852fd61d;p=m_lib.git diff --git a/m_lib/m_shutil.py b/m_lib/m_shutil.py index 10e5ebf..b691abc 100755 --- a/m_lib/m_shutil.py +++ b/m_lib/m_shutil.py @@ -1,11 +1,11 @@ #! /usr/bin/env python -"""Broytman's shell utilities. Additional to shutil.py (standard library module) - - Written by Broytman, Oct 1997. Copyright (C) 1997 PhiloSoft Design. +""" +Shell utilities. Additional to shutil.py (standard library module). """ -import os, string +from __future__ import print_function +import os mkhier_error = "m_shutil.mkhier_error" @@ -15,14 +15,14 @@ def mkhier(path): # Python implementation of UNIX' mkdir -p /path/to/dir return # It's Ok to have the directory already created if os.path.exists(path): - raise mkhier_error, "`%s' is file" % path + raise mkhier_error("`%s' is file" % path) - list_dirs = string.split(path, os.sep) - #print list_dirs + list_dirs = path.split(os.sep) + #print(list_dirs) for i in range(0, len(list_dirs)): - new_path = string.join(list_dirs[0:i+1], os.sep) - if (new_path <> '') and (not os.path.exists(new_path)): - #print "Making", new_path + new_path = os.sep.join(list_dirs[0:i+1]) + if (new_path != '') and (not os.path.exists(new_path)): + #print("Making", new_path) os.mkdir(new_path)