二十五岁时我们都一样愚蠢、多愁善感,喜欢故弄玄虚,可如果不那样的话,五十岁时也就不会如此明智。
标题:Python3 os 模块 Pathconf 方法
Python3 os 模块 Pathconf 方法
#!/usr/bin/python3 import os, sys print ("%s" % os.pathconf_names) # Retrieve maximum length of a filename no = os.pathconf('a2.py', 'PC_NAME_MAX') print ("Maximum length of a filename :%d" % no) # Retrieve file size no = os.pathconf('a2.py', 'PC_FILESIZEBITS') print ("file size in bits :%d" % no)