views:

617

answers:

4

I'm trying to upload files and folders to a library using SharePoint Designer 2007 (on a WSS 3.0 SharePoint site).

It's giving me an error when I try to upload empty folders or folders that have an & in their name.

OS: Windows Vista, Windows Server 2008.

Can someone please assist?

A: 

Even easier, go to the site in question, go to the library, change the view to explorer view("View:" dropdown at top right of document view pane).

Then you can drag and drop the folder/subfolder/documents directly into sharepoint...maintains structure and will even allow empty folders

curtisk
thanks! i'm using forms based authentication! will it work. so far, fba has not been easy!
good question, we don't have any form based, but it will take you second to prove out whether it works, try it!
curtisk
curtisk
+1  A: 

There are certain characters that SharePoint does not allow in the filename. Unfortunately the ampersand character is one of them! Here is a list I've found, I'm not sure if there's an official list somewhere:

char[] InvalidFilenameCharacters = new[] { '\\', '/', ':', '*', '?', '"', '<', '>', '|', '#', '{', '}', '%', '~', '&' };
Alex Angas
thank you!!!!! !
A: 

In addition to the characters Alex Angas listed, SharePoint also doesn't support files and folders with Unicode 0-31, 127, or 129-159 in their names (mostly unprintable / invisible). Empty folders can be added in SharePoint Designer using the New Folder button, but they're ignored during import operations.

Morbo
A: 

This is a list of characters that you cannot use in sites, folders, and files in SharePoint.

http://support.microsoft.com/kb/905231

jonb