Errno 30]只读文件系统:u' templates / jatin / abcpage /'

时间:2014-08-23 06:08:13

标签: python django google-app-engine

我正在app engine django项目中将文件从一个文件夹复制到另一个文件夹。

source_file = os.listdir('templates/1/')
fileList = ['templates/1/'+filename for filename in source_file]
对于fileList中的f

shutil.copy2(f, 'templates/'+request.user.username+'/abcpage/')

我收到以下错误:

  

IOError at / copy_file / [Errno 30]只读文件系统:   U'模板/ jatin / abcpage /'

例外值:

  

[Errno 30]只读文件系统:u' templates / jatin / abcpage /'   例外位置:C:\ Program   FILES \谷歌\ google_appengine \谷歌\ AppEngine上\ TOOLS \ devappserver2 \蟒蛇\ stubs.py   在 init ,第245行

1 个答案:

答案 0 :(得分:1)

App Engine不支持复制文件。应用程序文件以及您通过update上传的任何其他文件都是只读的。