python

python cmd命令行能进行文件操作吗

小樊
81
2024-12-11 12:13:20
栏目: 编程语言

是的,Python 的 cmd 命令行工具可以进行文件操作。你可以使用 Python 的内置模块 osshutil 来实现文件的创建、删除、移动、复制等操作。以下是一些简单的示例:

  1. 创建一个名为 example.txt 的文件:
import os

file_name = "example.txt"
with open(file_name, "w") as file:
    file.write("Hello, World!")
  1. 删除一个名为 example.txt 的文件:
import os

file_name = "example.txt"
if os.path.exists(file_name):
    os.remove(file_name)
  1. 将一个名为 source.txt 的文件移动到一个名为 destination.txt 的目标位置:
import shutil

source_file = "source.txt"
destination_file = "destination.txt"
shutil.move(source_file, destination_file)
  1. 复制一个名为 source.txt 的文件到一个名为 destination.txt 的目标位置:
import shutil

source_file = "source.txt"
destination_file = "destination.txt"
shutil.copy(source_file, destination_file)

这些示例仅展示了 Python cmd 命令行工具在文件操作方面的一些基本功能。你可以根据需要使用更多的 osshutil 模块功能来实现更复杂的文件操作。

0
看了该问题的人还看了