我搜索过高和低,但我正在努力使用以下代码。在底部的for循环中,我需要遍历mutlidimensional列表的第一个元素中的名称。我是Python的新手,所以请原谅我的无知。
for file in files: # loop thru each recording
file_with_path = recording_fullpath + "/" + file #construct full file path
file_mtime = modification_date(file_with_path) # obtain file mod date
if file_mtime >= start_date and file_mtime <= end_date:
#print file + " is within the time range " + str(file_mtime)
archive_list[count].append (file_with_path)
archive_list[count].append (recording_subdir) # append filename with path to list
archive_list.append([])
count =+ 1
tarname = tar_path + "/" + client_id + "_" + dt.datetime.now().strftime("%Y%m%d_%H%M%S") + ".tar.gz"
print tarname
tar = tarfile.open (tarname, "w:gz")
for name in archive_list[][]:
print "Adding %s" % (name)
tar.add(name, arcname=client_id)
tar.close()
当我只使用单个元素数组但无法计算出包含第二列的语法时,此代码可以正常工作。
答案 0 :(得分:1)
tarname = tar_path + "/" + client_id + "_" + dt.datetime.now().strftime("%Y%m%d_%H%M%S") + ".tar.gz"
print tarname
tar = tarfile.open (tarname, "w:gz")
for name, dir in archive_list:
print "Adding %s" % (name)
tar.add(name, arcname=client_id)
tar.close()
这会遍历列表,将每个双元素子列表解压缩为两个变量name
和dir
。