2006年04月08日 星期六 01:52
请问 os.unlink 函数删除文件夹时如果权限不够怎么办? 代码如下: >>> os.makedirs(r'c:\test') >>> os.unlink(r'c:\test') Traceback (most recent call last): File "", line 1, in ? OSError: [Errno 13] Permission denied: 'c:\\test' -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060408/4ec32684/attachment.html
2006年04月08日 星期六 07:17
使用异常,输出一个用户看得懂的提示信息 -- 开飞机的舒克 http://www.lvye.org/shuke msn:weizhong at netease.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060408/3bbbc7b2/attachment.html
2006年04月08日 星期六 08:00
os.removedirs(r'c:\test') 在06-4-8,Neil <chenrong2003 at gmail.com> 写道: > > 请问 os.unlink 函数删除文件夹时如果权限不够怎么办? > 代码如下: > > >>> os.makedirs(r'c:\test') > >>> os.unlink(r'c:\test') > Traceback (most recent call last): > File "", line 1, in ? > OSError: [Errno 13] Permission denied: 'c:\\test' > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060408/2bcc520d/attachment.html
2006年04月08日 星期六 14:02
在这里应该不是这个意思吧, mkdirs创建的是目录,而unlink删除的是文件,所以才出现了错误, 而不是通常意义上的权限错误吧。 在06-4-8,魏忠 <weizhong2004 at gmail.com> 写道: > > > > 使用异常,输出一个用户看得懂的提示信息 > > > -- > 开飞机的舒克 > http://www.lvye.org/shuke > msn:weizhong at netease.com > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060408/5d6f9b18/attachment.htm
2006年04月08日 星期六 14:24
谢谢 员旭鹏 的解释,我试验了的确是这样。 因为 python 还是初学,很多不了解。 2006/4/8, 员旭鹏 <recordus at gmail.com>: > > 在这里应该不是这个意思吧, > mkdirs创建的是目录,而unlink删除的是文件,所以才出现了错误, > 而不是通常意义上的权限错误吧。 > > 在06-4-8,魏忠 <weizhong2004 at gmail.com > 写道: > > > > > > 使用异常,输出一个用户看得懂的提示信息 > > > -- > 开飞机的舒克 > http://www.lvye.org/shuke > msn:weizhong at netease.com > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > -- > I like Python & Linux. > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060408/e60fd602/attachment.htm
Zeuux © 2025
京ICP备05028076号