add compress or not option, enhance help

This commit is contained in:
Jakobus Schürz 2020-02-15 09:04:39 +01:00
parent 2f7098a866
commit 0495668fc9

View file

@ -173,6 +173,7 @@ class WorkdirFS(Operations):
print("Directory is empty -> remove it", print("Directory is empty -> remove it",
os.path.join(root, d)) os.path.join(root, d))
os.remove(os.path.join(root, d)) os.remove(os.path.join(root, d))
if self.args.compress:
for f in files: for f in files:
print("compress", os.path.join(root, f)) print("compress", os.path.join(root, f))
if zip_fileext not in f: if zip_fileext not in f:
@ -324,16 +325,31 @@ if __name__ == '__main__':
#main(sys.argv[2], sys.argv[1]) #main(sys.argv[2], sys.argv[1])
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
parser.add_argument("-a", "--archive", parser.add_argument("-a", "--archive",
default='archive/workdir', help="Path to archivedir-base") default='archive/workdir', help="""Path to archivedir-base. When path
starts with "/", it's an absolute path, else it is handled as path
relative to users home.
Defaults to »archive/workdir« """)
parser.add_argument("-m", "--mountpoint", parser.add_argument("-m", "--mountpoint",
default='Work', help='Path to Workdir') default='Work', help="""Path to Workdir. This path is always
parser.add_argument("-t", "--timeoffset", type=int, default=2, help="""If you're working relative to users homedir. "/" at the begin get removed.
Defaults to »Work«""")
parser.add_argument("-t", "--timeoffset", type=int, default=4, help="""If you're working
all day till 3 o'clock in the morning, set it to 4, so next day all day till 3 o'clock in the morning, set it to 4, so next day
archive-dir will be created 4 hours after midnight. You have 1h archive-dir will be created 4 hours after midnight. You have 1h
tolerance, if you're working one day a little bit longer""") tolerance, if you're working one day a little bit longer.
parser.add_argument("-Y", "--yearlydir", action="store_true") Defaults to »4«""")
parser.add_argument("-M", "--monthlydir", action="store_true") parser.add_argument("-Y", "--yearlydir", action="store_true",
parser.add_argument("-W", "--weeklydir", action="store_true") help="""Create a yearly directory - named YYYY - under »archive«.
Defaults to »False«""")
parser.add_argument("-M", "--monthlydir", action="store_true",
help="""Create a monthly directory - named MM - under »archive«.
Defaults to »False«""")
parser.add_argument("-W", "--weeklydir", action="store_true",
help="""Create a weekly directory - named WW - under »archive«.
Defaults to »False«""")
parser.add_argument("-C", "--compress", action="store_false",
help="""Compress each file in archive
Defaults to »True«""")
args = parser.parse_args() args = parser.parse_args()
print(args) print(args)
#root = os.environ['HOME']+'/archive' #root = os.environ['HOME']+'/archive'