0

我想将时间戳附加到每个文件的名称中,并将其从 databricks 笔记本移动到 ADLS Gen2 上的另一个文件夹。我可以列出如下文件名。

fileList = dbutils.fs.ls(file_input)

for i in fileList:
  try:
    file_path = i.path
    #Rename the file appending timestamp
    parser = datetime.datetime.now()
    time_stamp = parser.strftime("%Y%m%d-%H%M%S")
    # Rename the files on ADLS Gen2 appennding time_stamp 

    #Move the file
    dbutils.fs.mv(file_path, file_path_archive)
  except Exception as e:
    raise Exception(str(e))

如何为 ADLSGen2 上的文件重命名附加时间戳的文件。谢谢。

4

0 回答 0