是的,Python 的 cmd
命令行工具可以进行文件操作。你可以使用 Python 的内置模块 os
和 shutil
来实现文件的创建、删除、移动、复制等操作。以下是一些简单的示例:
example.txt
的文件:import os
file_name = "example.txt"
with open(file_name, "w") as file:
file.write("Hello, World!")
example.txt
的文件:import os
file_name = "example.txt"
if os.path.exists(file_name):
os.remove(file_name)
source.txt
的文件移动到一个名为 destination.txt
的目标位置:import shutil
source_file = "source.txt"
destination_file = "destination.txt"
shutil.move(source_file, destination_file)
source.txt
的文件到一个名为 destination.txt
的目标位置:import shutil
source_file = "source.txt"
destination_file = "destination.txt"
shutil.copy(source_file, destination_file)
这些示例仅展示了 Python cmd
命令行工具在文件操作方面的一些基本功能。你可以根据需要使用更多的 os
和 shutil
模块功能来实现更复杂的文件操作。