পাইথনের নেগেশন অপারেটর not
। সুতরাং আপনার !
সাথে প্রতিস্থাপন করুন not
।
আপনার উদাহরণস্বরূপ, এটি করুন:
if not os.path.exists("/usr/share/sounds/blues") :
proc = subprocess.Popen(["mkdir", "/usr/share/sounds/blues"])
proc.wait()
আপনার নির্দিষ্ট উদাহরণের জন্য (যেমন নীল মন্তব্যগুলিতে বলেছেন), আপনাকে subprocess
মডিউলটি ব্যবহার করতে হবে না , আপনি কেবল os.mkdir()
প্রয়োজনীয় ব্যয় হ্যান্ডলিং সদ্ব্যবহার সহ প্রয়োজনীয় ফলাফল পেতে ব্যবহার করতে পারেন।
উদাহরণ:
blues_sounds_path = "/usr/share/sounds/blues"
if not os.path.exists(blues_sounds_path):
try:
os.mkdir(blues_sounds_path)
except OSError:
# Handle the case where the directory could not be created.
os.mkdir()
?