在Python中,你可以使用os
和shutil
库来实现类似于rm
命令的功能
import os import shutil def remove_file(file_path): if os.path.exists(file_path): os.remove(file_path) print(f"{file_path} 已被删除") else: print(f"{file_path} 不存在") def remove_directory(dir_path): if os.path.exists(dir_path): shutil.rmtree(dir_path) print(f"{dir_path} 已被删除") else: print(f"{dir_path} 不存在") file_to_delete = "example.txt" dir_to_delete = "example_directory" remove_file(file_to_delete) remove_directory(dir_to_delete)
在这个示例中,我们定义了两个函数:remove_file
和remove_directory
。remove_file
函数用于删除一个文件,而remove_directory
函数用于删除一个目录及其内容。在调用这些函数之前,我们首先检查给定的路径是否存在,如果存在,则使用os.remove()
或shutil.rmtree()
进行删除。