1份文字用于各小组交换资料。 用于:
份额。 页: 1file.txt
检查理由确保<代码>/path/to/file.txt已经存在,并有正确的许可:
#[...]
# ensure that file exists and is readable
if not os.access(options.path, os.F_OK):
raise MyError( the file does not exist )
# ensure that path is absolute
if not os.path.isabs(options.path):
raise MyError( I need absolute path )
# ensure that file has read permissions for others
info = os.stat(options.path)
last_bit = oct(info.st_mode)[-1]
if not last_bit in [ 4 , 5 , 6 , 7 ]:
raise MyError( others cannot read the file: change permission )
问题是,派出一个用户:
份额。 页: 1
该方案没有失败。 在回顾中,我本应看到这一点,但我没有。
我如何补充一项检验,以确保这条道路是一份定期文件,该档案可能或不可能延期(我不能简单地处理“<>/strong”的名称)?