标签: 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()