2004年03月11日 星期四 11:49
请问怎么对文件进行copy、move、del操作?我看到用: dir(os)看到以下信息,哪个是对文件copy、move、del操作的? dir(os) ['F_OK', 'O_APPEND', 'O_BINARY', 'O_CREAT', 'O_EXCL', 'O_NOINHERIT', 'O_RANDOM', 'O_RDONLY', 'O_RDWR', 'O_SEQUENTIAL', 'O_SHORT_LIVED', 'O_TEMPORARY', 'O_TEXT', 'O_TRUNC', 'O_WRONLY', 'P_DETACH', 'P_NOWAIT', 'P_NOWAITO', 'P_OVERLAY', 'P_WAIT', 'R_OK', 'TMP_MAX', 'UserDict', 'W_OK', 'X_OK', '_Environ', '__all__', '__builtins__', '__doc__', '__file__', '__name__', '_copy_reg', '_execvpe', '_exists', '_exit', '_get_exports_list', '_make_stat_result', '_make_statvfs_result', '_pickle_stat_result', '_pickle_statvfs_result', 'abort', 'access', 'altsep', 'chdir', 'chmod', 'close', 'curdir', 'defpath', 'dup', 'dup2', 'environ', 'error', 'execl', 'execle', 'execlp', 'execlpe', 'execv', 'execve', 'execvp', 'execvpe', 'extsep', 'fdopen', 'fstat', 'fsync', 'getcwd', 'getcwdu', 'getenv', 'getpid', 'isatty', 'linesep', 'listdir', 'lseek', 'lstat', 'makedirs', 'mkdir', 'name', 'open', 'pardir', 'path', 'pathsep', 'pipe', 'popen', 'popen2', 'popen3', 'popen4', 'putenv', 'read', 'remove', 'removedirs', 'rename', 'renames', 'rmdir', 'sep', 'spawnl', 'spawnle', 'spawnv', 'spawnve', 'startfile', 'stat', 'stat_float_times', 'stat_result', 'statvfs_result', 'strerror', 'sys', 'system', 'tempnam', 'times', 'tmpfile', 'tmpnam', 'umask', 'unlink', 'unsetenv', 'utime', 'waitpid', 'walk', 'write'] -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20040311/3d0eacb9/attachment.html
2004年03月11日 星期四 11:50
请看Python自带的文档。具体到这个问题,请看shutil模块。 ------- Explicit is better than implicit ... -----Original Message----- From: zhangdm [mailto:zhangdm at intelware.com.cn] Sent: 2004年3月11日 11:50 To: python-chinese at lists.python.cn Subject: [python-chinese] re: 请问怎么对文件进行copy、move、del操作?我看到用: dir(os)看到以下信息,哪个是对文件copy、move、del操作的?
2004年03月11日 星期四 11:55
你看一看shutil,os.path和os这三个模块的文档就明白了。请多多利用Python的文档。 ;-) -----Original Message----- From: Jacob Fan Sent: 2004年3月11日 11:50 To: python-chinese at lists.python.cn Subject: RE: [python-chinese] re:请问怎么对文件进行copy、move、del操作 请看Python自带的文档。具体到这个问题,请看shutil模块。 ------- Explicit is better than implicit ... -----Original Message----- From: zhangdm [mailto:zhangdm at intelware.com.cn] Sent: 2004年3月11日 11:50 To: python-chinese at lists.python.cn Subject: [python-chinese] re: 请问怎么对文件进行copy、move、del操作?我看到用: dir(os)看到以下信息,哪个是对文件copy、move、del操作的?
2004年03月11日 星期四 11:57
win32py网站上有相关的文档,你可以看看。而且这个win32py基本都是对Win32 API的 wrapper,所以看Win32API也可以。 >From: "sherking" <sherking at citiz.net> >Reply-To: python-chinese at lists.python.cn >To: <python-chinese at lists.python.cn> >Subject: Re: Re[2]: [python-chinese] Python 新手几个问题。 >Date: Thu, 11 Mar 2004 10:42:01 +0800 > >Whr Bruce, 你好。 > 我是 python 初学,用的确实是 Tkinter ,这几天用休息时间试试用 python 编 个 notepad, 模仿 windows 的那个。实践是学习的最有效的途径。 > > 我用 win32clipboard ,可以达到目的了。谢谢。 > > 我全是靠网上的资料,主要是 http://www.pythonware.com/library/tkinter/introduction/index.htm上面的内容。 没有看到过 关于 win32clipboard 的之类的东西。本地目录也找不到源程序,只有 win32clipboard.pyd > >可否指点一些在线帮助,这样查起来方便些。 > >----- Original Message ----- >From: "Who Bruce" <whoonline at msn.com> >To: <python-chinese at lists.python.cn> >Sent: Thursday, March 11, 2004 9:40 AM >Subject: RE: Re[2]: [python-chinese] Python 新手几个问题。 > > > > 如果sherking用的是Tkinter,那就只能用win32py来操作clipboard了。wxpython 确实 > > 好用,我现在一直都用它:-) > > > > > > >From: "Zoom.Quiet" <zoomq at infopro.cn> > > >Reply-To: "Zoom.Quiet" <zoomq at itcase.com;zoomq at infopro.cn> > > >To: "Who Bruce" <whoonline at msn.com> > > >CC: python-chinese at lists.python.cn > > >Subject: Re[2]: [python-chinese] Python 新手几个问题。 > > >Date: Thu, 11 Mar 2004 09:34:48 +0800 > > > > > >Hello Who, > > > > > >如果使用 wxPython则 Clipboard 操作类似: > > >""" > > >def OnPaste(self, event): > > > do = wxTextDataObject() > > > wxTheClipboard.Open() > > > success = wxTheClipboard.GetData(do) > > > wxTheClipboard.Close() > > > if success: > > > pastedLines = LineSplitter(do.GetText()) > > > else: > > > wxBell() > > > return > > > if len(pastedLines) == 0: > > > wxBell() > > > return > > > elif len(pastedLines) == 1: > > > self.SingleLineInsert(pastedLines[0]) > > > else: > > > self.MultipleLinePaste(pastedLines) > > >""" > > >摘自\Lib\site-packages\wxPython\lib\editor\editor.py > > >你可以方便的使用 wxPython 打包好的全套 Clipboard 操作! > > > > > > > > >=== [ 9:12 ; 04-03-11 ] you wrote: > > > > > >WB> 你用的是什么GUI?有没有用win32py? > > > > > > > > > >>From: "sherking" <sherking at citiz.net> > > > >>Reply-To: python-chinese at lists.python.cn > > > >>To: <python-chinese at lists.python.cn> > > > >>Subject: [python-chinese] Python 新手几个问题。 > > > >>Date: Wed, 10 Mar 2004 18:14:35 +0800 > > > >> > > > >>小弟初学 Python,我在用PYTHON 编一个NOTEPAD,就是WINDOWS 那种,而且 是完 > > 全模 > > >WB> 仿的。有几个问题搁着,网上查了好久,一直无法解决。 > > > >> > > > >>1、 剪切板里操作。 clipboard_append(str) > > > >>将内容送入剪切板,clipboard_clear > > >WB> ()于清空,但怎么取出里面的内容呢?(不要笑我,我确实找不出来) > > > >> > > > >>2、 “关于”对话框, os.sys.getwindowsversion() 可以得到系统部分信息 ,但 > > 怎 > > >WB> 么得到系统当前用户、物理内存等信息,像 windows notepad 的帮助那样。 我只 > > 是想 > > >WB> 很好地模仿、实践中学习 python。 > > > >> > > > >>3、 > > > >>通过努力,读、写、修改等基本功能可以实现。但发现对中文支持不够,有什 么 > > >WB> 办法? > > > >> > > > >>谢谢。 > > > >>_______________________________________________ > > > >>python-chinese list > > > >>python-chinese at lists.python.cn > > > >>http://python.cn/mailman/listinfo/python-chinese > > > > > >WB> _________________________________________________________________ > > >WB> 免费下载 MSN Explorer: http://explorer.msn.com/lccn/ > > > > > >WB> _______________________________________________ > > >WB> python-chinese list > > >WB> python-chinese at lists.python.cn > > >WB> http://python.cn/mailman/listinfo/python-chinese > > > > > >=== === === === === === === === === === > > > > > >-- > > >Best regards, > > > Zoom.Quiet > > > > > > /=======================================\ > > >]Time is unimportant, only life important![ > > > \=======================================/ > > > > > > > _________________________________________________________________ > > 与联机的朋友进行交流,请使用 MSN Messenger: http://messenger.msn.com/cn > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese _________________________________________________________________ 免费下载 MSN Explorer: http://explorer.msn.com/lccn/
2004年03月11日 星期四 11:57
请看这儿:http://mail.python.org/pipermail/python-list/2003-June/thread.html#167677 关于"read a unicode file"的几封信。 ------- Explicit is better than implicit ... -----Original Message----- From: 0.706 [mailto:0.706 at 163.com] Sent: 2004年3月11日 10:57 To: python-chinese at lists.python.cn Subject: Re: Re: Re: RE: [python-chinese] (no subject) 大家好! 应该是unicode,那应该如何? ======= 2004-03-11 10:52:07 您在来信中写道:======= >0.706,您好! > > 是编码的问题吧。 >原先的文件是什么编码?unicode > >======= 2004-03-11 10:47:37 您在来信中写道:======= > >>Jacob Fan,您好! >> >> 没有报告错误,但是生成的结果文件不对,pt.txt有360k, >>生成的ptz.txt只有1K,而且有乱码. >>
2004年03月11日 星期四 12:26
周海文,您好! 谢谢! ======== 2004-03-11 11:46:41 您在来信中写道: ======== 安装zope建类似j2ee的东西,开发效率及运行效率都回成倍增加 参考 http://webfinance.gti.cn ----- Original Message ----- From: fxg To: python-chinese Sent: Thursday, March 11, 2004 11:23 AM Subject: [python-chinese] (no subject) Python的web应用程序怎么写?谁能告诉我一个大概的情况?流程或者步骤,能取代J2EE为最终目的。 _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese = = = = = = = = = = = = = = = = = = = = = = 致 礼! fxg ifxg at tom.com 2004-03-11 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20040311/09379db1/attachment.htm
Zeuux © 2024
京ICP备05028076号