def movefile(src, dst):
    result = const.ENoError
    try:
        shutil.move(src, dst)
    except (shutil.Error, OSError) as ex: