如何在django中使用shell命令在目录中创建文件
我正在 django 中做一个项目,我必须连接一些日志文件并将其放在新文件中。如何在 django 中使用 shell 命令创建文件???
Iam doing a project in django where i have to concatenate some log files and place it in the new file. How to create a file using shell commands in django???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Django,只是一个Python框架。因此,您可以在 Django 中执行的操作与在 Python 中执行的操作几乎相同。
在 Python 中,打开(和创建)文件的方法是使用
open(filename, mode)
。拥有文件对象后,您可以在其上写入,并在完成所需的所有操作后关闭它。
Django, is just a Python framework. So, what you can do in Django is pretty much what you can do in Python.
In Python, the way to open (and create) files is with
open(filename, mode)
.After you have a file object, you can write on it, and after doing everything you needed to do, close it.