SarkariResultess QA Bank

Path का existence check कैसे करें? — interview में इसका सही जवाब क्या है?

Other 0 Views Verified
Path का existence check कैसे करें? — interview में इसका सही जवाब क्या है?
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

Path('data.txt').is_exists()

Path('data.txt').is_exists()
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified Correct Answer

Path('data.txt').exists()

Path('data.txt').exists()
Additional Explanation
Path.exists() path मौजूद है या नहीं बताता है।
Verified

exists(Path,'data.txt')

exists(Path,'data.txt')
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified

Path.exists('data.txt')

Path.exists('data.txt')
Additional Explanation
यह विकल्प सही समाधान नहीं है।