-
[Python] Check shared folder of Windows operating system using subprocess and regular expressionPython/Python for Windows 2018. 5. 4. 13:14
파이썬 subprocess와 정규식을 이용한 윈도우 운영체제 공유폴더 점검
import subprocess import re p = re.compile('\w+[$]') for x in subprocess.check_output('net share').split(): p1 = p.findall(str(x)) if p1: print(p1) -------------------------------------------------------- ['C$'] ['IPC$'] ['ADMIN$']
'Python > Python for Windows' 카테고리의 다른 글
[Python] 리스트의 index를 활용하여 문자열 분리 (0) 2018.05.13 [Python] subprocess 모듈과 DOS ping 명령어를 이용한 핼스 체크 (0) 2018.05.09 [Python] sys모듈로 입력인수 처리하기 (0) 2018.05.07 [Python] To occur windows beep sound. (윈도우 비프음 발생시키기) (0) 2018.05.07 [Python] SQLite 메모리DB를 활용한 파이썬 IIS 로그파서 (0) 2018.04.27 [Python] xcopy DOS명령어를 조합한 증분 백업 (0) 2018.04.20 [Python] 윈도우 서버에서 SMTP서버로 메일 발송 (2) (0) 2018.04.18 [Python] 자신의 로컬 IP 알아내기 (0) 2018.04.18