> 백엔드 개발 > 파이썬 튜토리얼 > Python: OS 모듈 소개

Python: OS 모듈 소개

Patricia Arquette
풀어 주다: 2024-10-16 08:10:02
원래의
697명이 탐색했습니다.

Python : OS Module Introduction

OS 모듈

  • OS 모듈을 가져오기 위해 우리는 사용합니다.

1

import os

로그인 후 복사
  • 메서드/함수에서 사용 가능한 모든 옵션을 인쇄하려면

1

2

3

import os

 

print(dir(os))

로그인 후 복사
  • 우리가 사용하는 현재 작업 디렉토리를 인쇄하려면

1

2

3

import os

 

print(os.getcwd())

로그인 후 복사
  • 우리가 사용하는 디렉토리 위치를 인쇄하려면

1

2

3

4

5

6

7

8

9

10

11

12

13

14

import os

path='/home/user/'

 

# printing path before changing directory

print(os.getcwd())

 

# function used for changing directory

os.chdir(path)

 

# printing path after changing directory

print(os.getcwd())

 

# to list directories

print(os.listdir())

로그인 후 복사
  • 중간 디렉터리 없이 단일 디렉터리를 만들려면

1

2

3

4

5

6

import os

 

# this wont create intermediate directories

os.makedir('single_dir')

 

print(os.listdir())

로그인 후 복사
  • 중간 디렉토리가 있는 여러 디렉토리를 만들려면

1

2

3

4

5

6

import os

 

# this will create intermediate directories

os.makedirs('parent_dir/child_dir')

 

print(os.listdir())

로그인 후 복사
  • 단일 디렉토리를 제거하려면

1

2

3

4

5

6

import os

 

# this wont remove intermediate directories

os.rmdir('path')

 

print(os.listdir())

로그인 후 복사
  • 여러 디렉터리를 제거하려면

1

2

3

4

5

6

import os

 

# this will remove intermediate directories

os.removedirs('path1/path2')

 

print(os.listdir())

로그인 후 복사
  • 디렉토리 이름을 바꾸려면

1

2

3

4

5

6

import os

 

# this will remove intermediate directories

os.rename('old-name','new-name')

 

print(os.listdir())

로그인 후 복사
  • OS에 대한 정보를 출력하기 위해 os.stat() 함수를 사용합니다.

1

2

3

4

5

6

7

8

9

import os

import datetime from datetime

 

# this will remove intermediate directories

print(os.stat('file-name'))

 

# Example : to print when file was created

file_created = os.stat('file-name').st_mtime

print(datetime.fromtimestamp(file_created))

로그인 후 복사
  • 디렉토리 및 하위 디렉토리에 대한 정보를 나열하려면

1

2

3

4

5

6

7

8

9

10

import os

 

path = os.chdir('path')

 

# Example : to print all the files under that above path

for dirpath, dirname, filename in os.walk():

    print('Current Path:',dirpath)

    print('Directories:',dirname)

    print('filename:',filename)

    print()

로그인 후 복사
  • 환경 변수를 인쇄하려면

1

2

3

4

import os

 

# to print Environment variable home

print(os.environ.get('HOME'))

로그인 후 복사
  • 경로와 상호작용하기 위해 os.path 모듈을 사용합니다

  • 경로 모듈 예시

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

import os

 

# to check if given path exists or not

print(os.path.exists('/home/user1/text.txt'))

 

# to check if given path is a directory or file

print(os.path.isdir('/home/user2/demo'))

print(os.path.isfilek('/home/user2/demo'))

 

# to split filname name from extenstion we use

print(os.path.splitext('/home/demo1/book.txt'))

 

# to print basename of any file we use

print(os.path.basename('/home/demo1/book.txt'))

# to print the directory name we use

print(os.path.dirname('/home/demo1/book.txt'))

# to print both, dirname + basename we use

print(os.path.split('/home/demo1/book.txt'))

 

# to join paths we use

file_path = os.path.join(os.environ.get('HOME'),'test.txt')

print(file_path)

로그인 후 복사

위 내용은 Python: OS 모듈 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿