>>> import os
>>> os.getcwd()
'C:\\Users\\Administrator\\AppData\\Local\\Programs\\Python\\Python37'
>>> os.chdir("C:\\Users\\Administrator\\Desktop")
>>> os.getcwd()
'C:\\Users\\Administrator\\Desktop'
>>> os.listdir()
['2019.07.16_01.10.01.xlsx', 'A Guideline for bidding.pdf', 'DAP.jpg', 'desktop.ini', 'eclipse.exe - 바로 가기.lnk', 'emro Messenger.lnk', 'jd-gui.exe - 바로 가기.lnk', 'Kalmuri.exe - 바로 가기.lnk',
'mbox-short.txt', '관리.msc', '관리.rdg', '여권사진.png', '여권증명사진.png', '0004012H001244401.pfx', '지도.pdf', '용선관리_사용자매뉴얼_V1.0.pdf', '정보보안서약서']
>>> exec(open("string2.py").read()) # enconding error 발생하면 아래처럼 파일의 encoding에 맞게 옵션 추가하면 된다.
>>> exec(open("string2.py", encoding="utf-8").read())
1. Python shell 실행파일 디렉토리에 아래 파일을 만들어 저장하고
init.py
----------------------------------------------------------
# exec(open("init.py").read())
import os
os.chdir("U:\\Project\\Python")
print(os.getcwd())
_files = os.listdir();
for _file in _files :
print(_file)
2. Python shell 실행후 아래 실행하면 위 스크립트에 지정된 초기 디렉토리로 이동하여 작업할 수 있다.
>>> exec(open("init.py").read())
U:\Project\Python
.git
.gitattributes
first.py
mbox-short.txt
second.py
socket.py
string.py
third.py
>>>
python shell 에서 os 명령어로 디렉토리 이동, 그리고 py파일 실행
|
2019.08.21 17:33:08
|
2019.08.25 23:56:19
|
513
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2019.08.29
2019.08.28
2019.08.23
2019.08.23
2019.08.21
2019.08.21
2017.03.18
2017.03.01
2017.02.18
2017.02.18
2017.02.18