使用python cgi服务器端脚本创建新文件

时间:2015-09-16 07:06:46

标签: python filesystems cgi server-side

我试图在终端(ubuntu)中使用纯python创建新的文本文件,它运行良好并且创建了新文件但是当我在服务器端使用cgi尝试相同的代码时,它不会创建新文件。

以下是我尝试过的示例代码

print "Content-type: text/html"
fo = open("foo.txt", "a")
fo.write( "Python is a great language.\nYeah its great!!\n");
fo.close()

0 个答案:

没有答案