Add an option to leave the imported file in place

This commit is contained in:
Phyks 2015-06-06 16:03:32 +02:00
parent fbb158543b
commit 7c54c9fd2e
1 changed files with 19 additions and 12 deletions

31
bmc.py
View File

@ -92,7 +92,7 @@ def checkBibtex(filename, bibtex_string):
return bibtex return bibtex
def addFile(src, filetype, manual, autoconfirm, tag): def addFile(src, filetype, manual, autoconfirm, tag, rename=True):
""" """
Add a file to the library Add a file to the library
""" """
@ -194,17 +194,21 @@ def addFile(src, filetype, manual, autoconfirm, tag):
tag = args.tag tag = args.tag
bibtex['tag'] = tag bibtex['tag'] = tag
new_name = backend.getNewName(src, bibtex, tag) if rename:
new_name = backend.getNewName(src, bibtex, tag)
while os.path.exists(new_name): while os.path.exists(new_name):
tools.warning("file "+new_name+" already exists.") tools.warning("file "+new_name+" already exists.")
default_rename = new_name.replace(tools.getExtension(new_name), default_rename = new_name.replace(tools.getExtension(new_name),
" (2)"+tools.getExtension(new_name)) " (2)" +
rename = tools.rawInput("New name ["+default_rename+"]? ") tools.getExtension(new_name))
if rename == '': rename = tools.rawInput("New name ["+default_rename+"]? ")
new_name = default_rename if rename == '':
else: new_name = default_rename
new_name = rename else:
new_name = rename
else:
new_name = src
bibtex['file'] = new_name bibtex['file'] = new_name
try: try:
@ -478,6 +482,9 @@ if __name__ == '__main__':
help="Confirm all") help="Confirm all")
parser_import.add_argument('--tag', default='', help="Tag", parser_import.add_argument('--tag', default='', help="Tag",
type=commandline_arg) type=commandline_arg)
parser_download.add_argument('--in-place', default=False,
dest="inplace", action='store_true',
help="Leave the imported file in place",)
parser_import.add_argument('file', nargs='+', parser_import.add_argument('file', nargs='+',
help="path to the file to import", help="path to the file to import",
type=commandline_arg) type=commandline_arg)
@ -572,7 +579,7 @@ if __name__ == '__main__':
skipped = [] skipped = []
for filename in list(set(args.file) - set(args.skip)): for filename in list(set(args.file) - set(args.skip)):
new_name = addFile(filename, args.type, args.manual, args.y, new_name = addFile(filename, args.type, args.manual, args.y,
args.tag) args.tag, args.inplace)
if new_name is not False: if new_name is not False:
print(filename+" successfully imported as " + print(filename+" successfully imported as " +
new_name+".") new_name+".")