programing

파일 존재 확인 방법

muds 2023. 6. 30. 22:38
반응형

파일 존재 확인 방법

"전체 경로"를 통과할 수 있는 루비 클래스/메소드가 있습니까?home/me/a_file.txt유효한 파일 경로인지 확인하시겠습니까?

# file? will only return true for files
File.file?(filename)

그리고.

# Will also return true for directories - watch out!
File.exist?(filename)

특히 경로 이름을 확인하십시오.

파일파일 테스트 모듈이 더 단순하거나 직접적일 수 있지만, 저는 발견했습니다.Pathname전반적으로 더 나은 인터페이스.

언급URL : https://stackoverflow.com/questions/8590098/how-to-check-for-file-existence

반응형