「python開発」osモジュールの使い方、ファイル、ディレクトリを作成など

1.pythonプロセス
os.listdir(dirname)
os.getcwd()
os.getpid()
os.chdir(dirname)
os.name
os.getenv()
os.system()  例 os.system(‘ls -a’)
os.path.split()

コード下記:
>>>> os.path.split('/a/b/c/startnews24.txt’)
('/a/b/c’, 'startnews24.txt’)
os.path.isfile()とos.path.isdir()
os.path.exists()
>>> os.path.exists('a/b/a.txt’)
False

2.ファイルオブジェクトを作成
os.fdopen()
os.popen()

3.ファイルを操作
os.close(fd)
os.open(file,flags[,mode])
os.read(fd,n)
os.write(fd,str)

4.ファイルとディレクトリ
os.access(path,mode)
os.chdir(dirname)
os.getcwd()
os.chmod(path, mode)
os.chown(path, uid, gid)
os.listdir() 例 os.listdir('./’)
os.mkdir(path[,mode])
os.rmdir(path)
os.remove() ファイルを削除

5.プロセス管理
os.execl(path, arg0, arg1,…)
OK:os.execl( “/usr/bin/python “, “python “,` 'test.py ', 'i ')
NG:os.execl( “/usr/bin/python “, “test.py “,` 'i ')
os.exec*()
6.システム情報
os.curdir
os.pardir
os.sep linux–‘/’,windows–'\’
os.linesep Windows–'\r\n’,Linux–'\n’ Mac–'\r’。

7.miscellaneous funciton
os.urandom(n)

Python

Posted by arkgame