IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python:os 一些操作 -> 正文阅读

[Python知识库]Python:os 一些操作

tos
os.path 模块

  1. 获取绝对路径
import os
path = 'x/'  # the folder name: 'x'
abs_path = os.path.abspath(path)  #	返回绝对路径
print(abs_path)
  1. 拼接路径
sub_path = 'x_sub/'
new_path = os.path.join(path, sub_path)
print(new_path)
  1. 打开文件夹
path = 'x/'
dirs = os.listdir(path)  # # 打开文件夹
for files in dirs:
    with open('x2/test_list.txt', "a") as f:  # # save所有文件和文件夹(不会打开文件夹中的信息)
        f.write(files + '\n')
f.close()
  1. 创建文件并读写
# 1.  以读写的方式打开
content = os.open('x2/test_list2.txt', os.O_RDWR)  

# 2. 以读写的方式打开,创建并打开一个新文件
file_new = os.open('x2/test_list2.txt', os.O_RDWR | os.O_CREAT) 
# 避免报错【TypeError: a bytes-like object is required, not 'str'】
content = bytes('this is a new txt file \n', encoding="utf8")
os.write(file_new, content)
content2 = bytes('this is the second line', encoding="utf8")
os.write(file_new, content2)
os.close(file_new)
  1. 创建文件夹,os.mkdir() 和 os.makedirs()区别
# 1.
new_folder = 'x2/'
if os.path.exists(new_folder):  # # 判断文件夹是否存在
    print('existed')
if not os.path.exists(new_folder):  # # 创建新文件夹
    os.mkdir(new_folder)
# 2.
new_folder = 'x2/x2_sub/'  # 'x2_sub' 原本不存在
if os.path.exists(new_folder):  # # 判断文件夹是否存在
    print('existed')
if not os.path.exists(new_folder):  # # 创建新文件夹
    os.makedirs(new_folder)
# 3.
folders = ['folder1', 'folder2', 'folder3', 'folder4', 'folder5']
for folder in folders:
    isExists = os.path.exists(folder)
    if not isExists:
        os.makedirs(folder)
        print('created folder: %s' % folder)
    else:
        print('already existed')
  1. 移除
# 用于删除指定路径的文件。如果指定的路径是一个目录,将抛出OSError。
os.remove('x2/test_list.txt') 
  1. 重命名(oldname, newname),不能更换文件地址。
os.rename('x2/test_list2.txt', 'x2/tt.txt')
  1. os.walk() 遍历文件夹
# 1.
a = os.walk('x/')
print(a)  # 返回一个生成器: <generator object walk at 0x7f9767661200>
for curDir, dirs, files in a:

# 2.
for curDir, dirs, files in os.walk('x/'):

    with open('record.txt', 'a') as f:
        f.write('===============' + '\n')
        f.write('现在的目录:' + curDir + '\n')
        f.write('该目录下包含的子目录:' + str(dirs) + '\n')
        f.write('该目录下包含的文件:' + str(files) + '\n')
f.close()
  1. os.system(command)
os.system('cd /home/user/project/x')
os.system('date') 
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 23:20:55  更:2022-04-01 23:22:28 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 20:50:46-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码