Directories
ڈائریکٹریوں سے متعلق چند طریقہ جات ۔
نئی ڈائریکٹری (ونڈوز میں فولڈر) بنانا
os.mkdir("newdir")
ڈائریکٹری(ونڈوز میں فولڈر) بدلنا ۔
# Changing a directory to "/home/newdir"
os.chdir("/home/newdir")
موجودہ ورکنگ ڈائریکٹری معلوم کرنا۔
# This would give location of the current...