본문 바로가기
나를 위한 코드

파이썬 파일 열려있는지 확인

by 라나나 2023. 3. 22.
728x90
 
           
           myfile
= None
            try:
                if os.path.exists(path) :
                    myfile = open(path, "r+")
                    myfile.close()
            except IOError:
                print('파일이 열려있음')
                return
 
 
728x90

댓글