>  기사  >  백엔드 개발  >  Python 데이터 흐름 작업

Python 데이터 흐름 작업

巴扎黑
巴扎黑원래의
2018-05-16 14:53:354583검색

Python 파일 또는 폴더 작업

shutil이 모듈은 다양한 고급 다중 파일 및 다중 파일 수집 작업, 특히 파일 복사 및 삭제를 지원하는 기능을 제공합니다.
1. 폴더 및 파일 작업

import shutil 
shutil.copyfile(src, dst)   
 复制文件src的内容到文件dst,dst必须是完整的目标文件名,如果dst已经存在,它将会被替换 
shutil.copy(src, dst)   
 复制文件src到文件或文件夹dst。如果dst是一个文件夹,与src相同名字的文件在dst下被创建或重写。 
shutil.copytree(src, dst, symlinks=False, ignore=None) 
 递归的复制src下的整个目录到文件夹dst,dst不能是已经存在的,如果不存在,它将会被创建。 
shutil.rmtree(path) 
 删除path整个目录树内容 
os.rmdir(path)、 
 删除文件夹path,path必须是空文件夹,否则报OSError错误 
shutil.move(src, dst) 
 递归的移动src到另一个位置dst,src可以是一个文件或一个文件夹

2. 폴더의 각 파일을 탐색합니다.

import osnames = os.listdir(src)for name in names:
    srcname = os.path.join(src, name)
    fo = open(srcname, 'r')    for line in fo:        print line

3. 폴더가 존재하지 않는지 확인합니다. 폴더를 만듭니다.

if not os.path.exists(FILE_PATH):        os.makedirs(FILE_PATH)

Python. Python 파일 또는 폴더 작업

shutil

이 모듈은 다양한 고급 다중 파일 및 다중 파일 수집 작업, 특히 파일 복사 및 삭제를 지원하는 기능을 제공합니다. 1. 폴더 및 파일 작업

def get_conn():
    import MySQLdb    try:
        conn=MySQLdb.connect(host=HOST,user=USER,passwd=PASSWORD, port=PORT, db=DBNAME, charset=CHARSET)        return conn    except MySQLdb.Error,e:        print "Mysql Error %d: %s" % (e.args[0], e.args[1])# 插入操作def insert_one(cur,sql,value):
    res =  cur.execute(sql ,value)    # 插入成功,res 返回值为1
    if  1 != res :        print 'failed'
    else:        print 'success'def insert_many(cur,sql,values):
    res =  cur.executemany(sql ,values)    # 插入成功,res 返回值为1
    if  1 != res :        print 'failed'
    else:        print 'success'getRC = lambda cur: cur.rowcount if hasattr(cur,'rowcount')  else -1# 更新操作def update(cur,sql):
    cur.execute(sql)    return getRC(cur)# 删除操作def delete(cur,sql):
    cur.execute(sql)    return getRC(cur)# 只获取一条记录,返回的是一个元组def fetch_one(cur,sql):
    count = cur.execute(sql)
    result = cur.fetchone()    return result# 获取多条数据;返回的是二维元组def fetch_all(cur,sql):
    count = cur.execute(sql)
    results = cur.fetchall()    return results# 提交的完成操作def finish(conn):
    conn.commit()
    conn.close()

2. 폴더의 각 파일을 탐색합니다

import shutil 
shutil.copyfile(src, dst)   
 复制文件src的内容到文件dst,dst必须是完整的目标文件名,如果dst已经存在,它将会被替换 
shutil.copy(src, dst)   
 复制文件src到文件或文件夹dst。如果dst是一个文件夹,与src相同名字的文件在dst下被创建或重写。 
shutil.copytree(src, dst, symlinks=False, ignore=None) 
 递归的复制src下的整个目录到文件夹dst,dst不能是已经存在的,如果不存在,它将会被创建。 
shutil.rmtree(path) 
 删除path整个目录树内容 
os.rmdir(path)、 
 删除文件夹path,path必须是空文件夹,否则报OSError错误 
shutil.move(src, dst) 
 递归的移动src到另一个位置dst,src可以是一个文件或一个文件夹

3. 폴더가 있는지 확인하거나 폴더가 없으면 만듭니다.

import osnames = os.listdir(src)for name in names:
    srcname = os.path.join(src, name)
    fo = open(srcname, 'r')    for line in fo:        print line

MySQL에 대한 Python 연결 및 기본 작업

if not os.path.exists(FILE_PATH):        os.makedirs(FILE_PATH)

위 내용은 Python 데이터 흐름 작업의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:Python 모듈 소개다음 기사:Python 모듈 소개