0

How do I prevent files in a specific directory from uploading to Google AppEngine, while still uploading some (or all) of it's subdirectories.

I have tried:

skip_files:
^/source/source/[^/]*

with no success

4

1 回答 1

1

如果该目录不在项目的根目录中,那么这应该可以:

(.*/source/source/.*)

对于项目根目录中的目录,请尝试以下操作:

(source/source/.*)
于 2013-05-13T13:02:57.013 回答