Python3.4操作文件目录

Python3.4操作文件目录

编程语言对文件系统的操作是一项必不可少的功能,各种编程语言基本上都有对文件系统的操作,最简洁的莫过于linux里面shell的操作了,其次,则是python,ruby等动态语言的操作,那么,今天先来看下,在python里面如何使用一些常用的操作文件功能。

主要包括:

1,创建一个文件

2,删除一个文件

3,创建一个目录

4,删除一个目录

5,拷贝,重命名,查看文件大小

6,列出某个目录下文件的数量

7,递归打印某个目录下的所有文件和目录

8,读写文件操作

1,创建文件方法:

f=open("D://111.cc",mode="w",encoding="UTF-8")
f.close()

2,删除一个文件

import os
os.remove("D://222.ccc123")
os.close()

3,创建一个目录或多个目录

os.mkdir("E://bb")
os.makedirs("D:\\a\\b")

4,删除依旧用remove方法或多级删除

os.removedirs(path)
os.remove()

5,拷贝,重命名,查看文件大小

import os
import shutil
#第一个参数是源文件,第二个拷贝文件
shutil.copyfile("D://111.CC","D://222.ccc")
os.rename("D://222.ccc","D://222.ccc123")
os.stat("D://abc.txt").st_size

6,查看某个目录下文件数量:

def countDirs(dp):
  tt=tuple(os.walk(dp))
  print("文件夹"+dp+"的信息:")
  print("文件夹的个数: ",len(tt[0][1]),"文件的个数: ",len(tt[0][2]))

d1="D:\\tomcat7\\bin"
countDirs(d1)

结果如下:

文件夹D:\tomcat7\bin的信息:
文件夹的个数:  0 文件的个数:  28

Process finished with exit code 0

7,递归打印文件夹的方法:

def showAllDirs(dp):

    tt=os.walk(dp);
    for l in tt:
        for lf in l[1]:
            print("目录的路径是:",l[0]+"\\"+lf)

递归打印文件的方法:

def showAllDirsFiles(dirPath):
        tt=os.walk(dirPath);
        for l in tt:
            for ll in l[2]:
                 print("文件的路径是:",l[0]+"\\"+ll)

8,读取文件的方法:

def readFile():
    f=open(r"D:///bbb.txt",encoding="UTF-8")
    for line in f:
        #去除多余的换行符
        print(line.strip())
    f.close();

批量载入读取:

def readFile1():
  f=open(r"D:///bbb.txt",encoding="UTF-8")
  while 1:
    #print("j")
    lines=f.readlines(10000);
    if not lines:
      #print("end")
      break;
    for line in lines:
      print(line.strip())

  f.close()

写入文件例子:

def writeFile():
  a=list();
  a.append("a你好")
  a.append("b哈喽")
  a.append("c")
  #a追加模式w覆盖模式
  f=open("D://pp.txt",mode=‘a‘,encoding="UTF-8")
  print("文件大小:",f)

  for c in a:
    f.write(c+"\n")
  f.close()
  print("写入成功!")

最后需要注意一点,注意路径的写法需要使用\\两个符号加转义实现,如果只写一个,可能会导致问题!

时间: 2024-10-11 19:09:42

Python3.4操作文件目录的相关文章

Python3目录操作

Python3 目录操作 常见的目录操作: 显示当前目录 切换目录 新建.删除目录.移动.复制 显示目录内容 判断目录.文件是否存在 目录操作常用的函数如下: os.listdir() # 列出目录下的内容 os.getcwd() # 显示当前工作路径 os.chdir() # 切换工作目录 os.mkdir() # 新建目录 os.path.exists() # 判断目录是否存在 os.path.isdir() # 判断是否是目录示例代码1: #!/usr/bin/python3 import

python3列表操作大全 列表操作方法详解

1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #Author:SKING 4 #python3列表操作大全 列表操作方法详解 5 6 #创建列表 7 list = ['a', 'b', 'c', 'd', 'e', 'f'] 8 #取出列表 9 print(list[0], list[5]) #a f 10 #列表切片 11 print(list[1:3]) #['b', 'c'] 12 print(list[-3:-1]) #['d',

Python3字典操作详解 Python3字典操作大全

1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #Author:sking 4 #Python3字典操作详解 Python3字典操作大全 5 6 #字典是无序的(因为它没有下标),key必须是唯一的 7 #字典是可变的,可以修改和添加 8 #创建字典 9 info = {'haha':12,'heihei':13,'wowo':45} 10 #查找字典的值value 11 #方法1 12 print(info['heihei']) #13 此

python3集合操作方法详解 python3集合操作大全

1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #Author:sking 4 #python3集合操作方法详解 python3集合操作大全 5 6 #集合是无序的 7 #创建集合 8 a = {1,2,3} #正确 9 b = set([1,2,3]) #正确 10 c = set((1,2,3)) #正确 11 d = set({1:3,2:4}) #结果{1, 2} 只能取字典的key 12 13 #add添加集合中的元素(添加一项)

python3字符串操作

python3字符串操作 1 x = 'abc' 2 y = 'defgh' 3 4 print(x + y) #x+y 5 print(x * 3) #x*n 6 print(x[2]) #x[i] 7 print(y[0:-1]) #str[i:j] 8 #求长度 >>> len(x) 11 #将其他类型转换为字符串 >>> str(123) '123' #将数字转为对应的utf-8字符 >>> chr(97) 'a' #将字符转为对应的数字 &g

Python3快速入门(十一)——Python3数据库操作

Python3快速入门(十一)--Python3数据库操作 一.mysql-connector 驱动 1.mysql-connector?简介 mysql-connector?是?MySQL?官方提供的驱动器.使用pipenv进行包管理,安装命令如下:pipenv install mysql-connector 2.mysql-connector常用接口 mysql.connector.connect(*args, **kwargs)创建一个数据库连接,返回MySQLConnectionAbst

[No000078]Python3 字符串操作

#!/usr/bin/env python3 # -*- coding: utf-8 -*- '''Python 字符串操作 string替换.删除.截取.复制.连接.比较.查找.包含.大小写转换.分割等 @author: HK ''' if __name__ == '__main__': s = ' s dfg hjk,大 家好,.:?-_+0 ' #去两边空格及指定符号 print(s.strip())#两边都替换 # Return a copy of the string S with l

python3.x操作csv文件的实战

说明 python3.x集成了对csv文件的操作,直接引入包即可,但python2.x则需要单独安装. 实战 1.读取csv文件 #引入包 import csv #打开文件 csvfile = open('xiaoqiang.csv',newline='') #获得对象 csvReader = csv.reader(csvfile) #读取内容并打印 for content in csvReader:   print(content)    #关闭.这个经常有小伙伴忘了,今天在群里就有人遇到这个

141107●Winform操作文件目录及文件

文件及文件夹操作: 一.File类 1.创建: FileStream fs = File.Create(文件路径); 记住,创建完成后,需要关闭fs,否则别人无法使用这个文件. FileStream fs = File.Create(@"E:\aaa.txt"); fs.Close(); //using (FileStream fs = File.Create(@"E:\aaa.txt")) //{ //    StreamWriter sw = new Strea