1.目錄操做spa
#encoding=UTF-8
import unittest,os
from time import sleeprem
print dir(os)
#獲取文件路徑
'''獲取當前路徑'''
os.getcwd()
os.path.abspath('')get
#新建目錄
os.mkdir('test_file')
#新建多級目錄
# os.mkdir('test_file\\test_1\\test_2')it
sleep(4)test
#重命名目錄
os.rename('test_file','test-1_file')
f = open('.\\test-1_file\\test.txt', 'w+')
f.close()import
#刪除目錄
'''
只能刪除空的目錄,若目錄中有文件或目錄拋 WindowsError
'''
os.removedirs('test-1_file')
os.rmdir('test-1_file')coding
2.文件操做file
#encoding=UTF-8
import unittest,os
from time import sleepim
print dir(os)命名
#新建文件
'''
以 w或者w+ 打開文件,有此文件則打開,無此文件則新建
'''
f = open('test.txt', 'w+')
#寫入文件
f.write('hello world!')
f.close()
#讀取文件
f = open('test.txt', 'r')
print f.read()
f.close()
sleep(4)
#重命名文件
os.rename('test.txt','my_test.txt')
#刪除文件os.remove('my_test.txt')