[ Python ] 파이썬 pywin32 컴퓨터 및 유저 이름 디렉토리 경로 불러오기

[ Python ] 파이썬 pywin32 컴퓨터 및 유저 이름 디렉토리 경로 불러오기



1. pip 패키지 설치

    > pip install pywin32



2. 로컬 계정 이름 불러오기

import win32api

print(win32api.GetUserName())

    > Heo



3. 장치 이름 & 컴퓨터 이름 불러오기

import win32api

print(win32api.GetComputerName())

    > WINDOWSHEO



4. 현재 작업 중 인 디렉토리 경로 불러오기

import win32api

print(win32api.GetFullPathName(
        'GetComputerName.py'))

    > E:\My_Project\Python\GetComputerName.py

    # '*' 입력시 에도 사용 가능




댓글