I dont think ls -R will decend into hidden directories. Try
find -type f instead. On 17 April 2011 19:44, vincent <[email protected]> wrote: > Hey Guys, > I started to build my app on google app engine and apparently my app > is 3700 files already. > As i started 2 days ago it feels a bit weird. I use django 1.2 in a > zip file and when I run the commands : > > #!/bin/bash > cd `dirname $0` > echo "number of folders :" > ls -lR | grep "dr" | wc -l > echo "number of files :" > ls -lR | grep "\-r" | wc -l > echo "number of files + folder + symlink" > ls -alR | wc -l > > it says : > > number of folders : > 21 > number of files : > 91 > number of files + folder + symlink > 226 > > When I try to commit my code it always say : > > Scanning files on local disk. > Scanned 500 files. > Scanned 1000 files. > Scanned 1500 files. > Scanned 2000 files. > Scanned 2500 files. > Scanned 3000 files. > Scanned 3500 files. > Initiating update of app: xxxxxxxxx, version: 1 > Could not guess mimetype for static/.DS_Store. Using application/ > octet-stream. > Cloning 4 static files. > Cloning 3753 application files. > Cloned 100 files. > Cloned 200 files. > Cloned 300 files. > Cloned 400 files. > Cloned 500 files. > Cloned 600 files. > Cloned 700 files. > Cloned 800 files. > Cloned 900 files. > Cloned 1000 files. > Cloned 1100 files. > Cloned 1200 files. > Cloned 1300 files. > Cloned 1400 files. > Cloned 1500 files. > Cloned 1600 files. > Cloned 1700 files. > Cloned 1800 files. > Cloned 1900 files. > Cloned 2000 files. > Cloned 2100 files. > Cloned 2200 files. > Cloned 2300 files. > Cloned 2400 files. > Cloned 2500 files. > Cloned 2600 files. > Cloned 2700 files. > Cloned 2800 files. > Cloned 2900 files. > Cloned 3000 files. > Cloned 3100 files. > Cloned 3200 files. > Cloned 3300 files. > Rolling back the update. > Error 400: --- begin server output --- > Max number of files and blobs is 3000. > > What am I missing ? any idea ? is google engine counting my files in > my django zip ? > > thanks for you help !! > > Vincent > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
