在Python中,你可以使用os
模块来执行许多操作系统相关的任务
import os
current_directory = os.getcwd()
print(current_directory)
import os
new_directory = "new_folder"
os.mkdir(new_directory) # 如果目录已存在,将引发FileExistsError
import os
directory_content = os.listdir("path/to/directory")
print(directory_content)
import os
file_path = "path/to/file.txt"
if os.path.exists(file_path):
print("File exists")
else:
print("File does not exist")
import os
file_path = "path/to/file.txt"
os.remove(file_path) # 如果文件不存在,将引发FileNotFoundError
directory_path = "path/to/directory"
os.rmdir(directory_path) # 如果目录为空,将引发OSError
import os
old_file_path = "path/to/old_file.txt"
new_file_path = "path/to/new_file.txt"
os.rename(old_file_path, new_file_path)
import os
file_path = "path/to/file.txt"
file_size = os.path.getsize(file_path)
modified_time = os.path.getmtime(file_path)
print(f"File size: {file_size} bytes")
print(f"Last modified time: {modified_time}")
这只是os
模块功能的一部分。你可以查阅Python官方文档以了解更多关于os
模块的信息和其他操作系统任务。