python提取文件名并保存的方法是什么

44次阅读
没有评论

共计 715 个字符,预计需要花费 2 分钟才能阅读完成。

Python 提取文件名并保存的方法可以通过使用 os 模块中的相关函数来实现。具体步骤如下:

  1. 使用 os 模块的 os.path.basename() 函数来获取文件名,该函数接收文件路径作为参数,并返回文件名。
import os

file_path = "/path/to/file.txt"
file_name = os.path.basename(file_path)
print(file_name)  # 输出: file.txt
  1. 如果想要提取文件名中的文件扩展名,可以使用 os 模块的 os.path.splitext() 函数,该函数也接收文件路径作为参数,并返回一个包含文件名和文件扩展名的元组。
import os

file_path = "/path/to/file.txt"
file_name, file_ext = os.path.splitext(file_path)
print(file_name)  # 输出: /path/to/file
print(file_ext)  # 输出: .txt
  1. 如果需要将文件名保存到另一个文件中,可以使用文件操作相关的方法来实现,例如使用 open() 函数打开一个新文件,然后使用 write() 方法将文件名写入该文件。
import os

file_path = "/path/to/file.txt"
file_name = os.path.basename(file_path)

new_file_path = "/path/to/new_file.txt"
with open(new_file_path, "w") as new_file:
    new_file.write(file_name)

以上方法可以用于提取文件名并保存到另一个文件中。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-16发表,共计715字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)