views:

48

answers:

1
  1. Is there limitation for maximum number of files which can be uploaded in SharePoint location in one folder.
  2. Is there limitation for maximum number of folders/sub folders which can be created in SharePoint location.
  3. Whether specific naming convention is required to be followed for folder/file creation in SharePoint(Special character allowed)?
+1  A: 

For #1: The maximum library limit is 30,000,000 documents. The maximum practical limit for a single folder is 2000 files. Sharepoint does not scale well beyond 1000 files per folder.

For #2: There's no practical limit for the number of subfolders. Your folder structure will become unmanageable well before you reach the limit. The complete URL for the file or folder cannot be longer than 260 characters. Note that this includes the server, site and library name.

For #3: You cannot use the following characters anywhere in a folder name or a server name:
~ # % & * { } \ : < > ? / | "

File names and folder names cannot be longer than 128 characters.

References:
http://old.markharrison.co.uk/blog/2004/09/sharepoint-scaling-limits.htm

http://blogs.officezealot.com/legault/archive/2007/04/26/20302.aspx

Robert Harvey
I doubt that practical limit of 2000 files per forlder is true. Just create views that has RowLimit property set <= 2000 and filter on indexed columns + order to see documents you are interested in: http://www.infoq.com/articles/SharePoint-Andreas-Grabner
Janis Veinbergs

related questions