Unable to rename folders and files on SharePoint mapped drive.

I just installed a fresh copy of Windows 7 and have mapped a drive to my SharePoint "Shared Documents" folder.  I am able to open, save, and delete files and folders.  However, I am unable to rename files and folders.  No matter how long of
short of a name I use I get the following error:
"The file name you specified is not valid or too long.  Specify a different file name."
I've mapped the "S" drive to http://hostname.domain.com/Shared Documents/
I am a SharePoint Admin, and have confirmed that if I do not have this problem if I log into SharePoint with IE.  I have also confirmed that others are not experiencing this issue. Also, this issue did not exist on my previous installation of Windows
7.  Therefore I assume this is a config issue.
Also, in "My Computer" it shows the mapped SharePoint drive as a "FAT" filesystem.

Did some more testing. From my mapped drive, I can create new folders and files, and delete them.  I created a folder in Windows Explorer, when I tried to give a name it gave me the above error and saved the folder as "New Folder".  No matter when
I try, I cannot rename this folder unless I log into the SharePoint interface.
Next, I tried this from the command line.  I moved to my S drive, and did a "mkdir test" and was able to create a folder named test.  Next I tried to "rename test testing" and received the following error:
The filename, directory name, or volume label syntax is incorrect.
The full path is S:\test.  If I do a "mkdir testing" I am able to create the folder.  If I try to rename the folder in Explorer, it gives me the "file name not valid or too long".  I'm obviously well under the 260 character limit, so there
has to be something wrong with the fiel name, or drive mapping.
Also, when I "dir" the S drive it tells me the drive has no label.  "Volume in drive S has no label."
I'm having the same issue with files. I can create a file, modify it, delete it, but can't rename it.

Similar Messages

  • How to create a folder with standard contained folders and files in SharePoint 2013?

    I've got folders and files on my SharePoint 2013 site that form a template when I add a new folder for a customer. When I create a new folder for a customer, I want those folders and files added automaticly to that new folder. How can I do that?

    How would I go about doing this without Visual Studio? Is that possible? Need to create Folder templates.
    Every "new folder" created should have nested folders already included. 
    Company Name (New Folder 1) 
    Company Documents (1.01)
    Tax Documents (1.02)
    Bank Statements (1.03)
    Extreme novice, please give as much details as possible! I'm trying to implement SP 2013 without all the 2013 software (Visual Studios, SharePoint Designer, etc.)
    Thank you!

  • Droplet to Rename Folders and Files

    I am an AS newbie and I need some help. Our accounting software creates a folder structure on our server when a job is created with a 6 digit job number. Enclosed in this folder is a set of sub-folders which are generated with a generic name: 0000_Art, 0000_Final, 0000_Fonts etc. It also places a generic rtf file named 0000_Readme. When work begins on a job we currently have to replace the "0000" with the last four digits of the job number: "140662" = "0662_Art" etc.
    I found a script to do this with some manual intervention but wanted to take this one step further by creating a droplet and making it drag and drop. This droplet works, but the problem comes in that it still wants you to choose the target folder from a dialog and I would like to just auto process the dropped folder and it's contents. Also, is there a way to tell AS to use characters 3-6 of the dropped folder's name to replace any instances of "0000" in sub-folder or document names enclosed? Is there any uneccessary code which can be stripped out?
    Here is the script as it stands now:
    on open of finderObjects
    set the source_folder to (choose folder with prompt "Folder containing items to edit:") as Unicode text
    display dialog "Search and replace in:" buttons {"File Names", "Folder Names", "Both"} default button 3
    set the search_parameter to the button returned of the result
    repeat
    display dialog "Enter text to find in the item names:" default answer "0000" buttons {"Cancel", "OK"} default button 2
    set the search_string to the text returned of the result
    if the search_string is not "" then exit repeat
    end repeat
    repeat
    display dialog "Enter replacement text:" default answer "" buttons {"Cancel", "OK"} default button 2
    set the replacement_string to the text returned of the result
    if the replacement_string contains ":" then
    beep
    display dialog "A file or folder name cannot contain a colon (:)." buttons {"Cancel", "OK"} default button 2
    else if the replacement_string contains "/" then
    beep
    display dialog "A file or folder name cannot contain a forward slash (/)." buttons {"Cancel", "OK"} default button 2
    else
    exit repeat
    end if
    end repeat
    display dialog "Replace “" & the search_string & "” with “" & the replacement_string & "” in every item name?" buttons {"Cancel", "OK"} default button 2
    tell application "Finder"
    -- Get a Finder reference to the relvant items.
    if (search_parameter is "Folder Names") then
    set item_reference to a reference to (folders of entire contents of folder source_folder whose name contains search_string)
    else if (search_parameter is "File Names") then
    set item_reference to a reference to (files of entire contents of folder source_folder whose name contains search_string)
    else
    set item_reference to a reference to (items of entire contents of folder source_folder whose name contains search_string)
    end if
    -- Get a list of aliases to the items.
    -- (Individual Finder references might fail when renaming items within renamed folders.)
    try
    set item_list to item_reference as alias list
    on error
    set item_list to item_reference as alias as list
    end try
    if item_list is not {} then
    -- If there are any relevant items, get their names.
    set current_names to name of item_reference
    -- Doctor each name...
    repeat with i from 1 to (count current_names)
    set astid to AppleScript's text item delimiters
    set AppleScript's text item delimiters to search_string
    set text_items to text items of (item i of current_names)
    set AppleScript's text item delimiters to replacement_string
    set newitemname to text_items as Unicode text
    set AppleScript's text item delimiters to astid
    -- ... and rename the associated item.
    my setitemname(item i of item_list, newitemname)
    end repeat
    end if
    end tell
    end open
    beep 2
    on setitem_name(thisitem, newitemname)
    tell application "Finder"
    --activate
    set the parent_container to (the container of this_item)
    if not (exists item newitemname of the parent_container) then
    try
    set the name of this_item to newitemname
    on error the error_message number the error_number
    if the error_number is -59 then
    set the error_message to "This name contains improper characters, such as a colon (:)."
    else --the suggested name is too long
    --set the error_message to error_message -- "The name is more than 31 characters long."
    end if
    --beep
    set newitemname to my getnew_name(errormessage, newitemname)
    if (newitemname is 0) then return 0
    my setitem_name(thisitem, newitemname)
    end try
    else --the name already exists
    --beep
    set newitemname to my getnewname("This name is already taken, please rename.", newitemname)
    if (newitemname is 0) then return 0
    my setitem_name(thisitem, newitemname)
    end if
    end tell
    end setitemname
    on getnewname(msg, default_answer)
    tell application (path to frontmost application as Unicode text)
    set {text returned:newitemname, button returned:button_pressed} to (display dialog msg default answer default_answer buttons {"Cancel", "Skip", "OK"} default button 3)
    if (button_pressed is "OK") then
    return newitemname
    else if (button_pressed is "Skip") then
    return 0
    else
    error number -128 -- only necessary on non-English systems.
    end if
    end tell
    end getnewname
    Various Mixed Macs   Mac OS X (10.4.3)  
    Various Mixed Macs   Mac OS X (10.4.3)  

    Hi lunarlandr and welcome to Apple Discussions!
    Without going through the script in detail, there's a lot that can be stripped out, and a few goodies that can be added.
    Droplets work best when iterating through lists (even one-item lists) of Finder items. As a brief example:
    on open (these_objects)
    repeat with each_object in these_objects
    --do something with each object in turn
    end repeat
    end open
    You need to remove the line beginning "choose folder" and let each_object become your source folder.
    The code below is rough and may need some amendment, but it should answer most of your questions. Test it and see.
    --begin script
    on run
    display dialog "I'm a droplet! Drop things on me!" buttons {"OK"} default button 1 with icon note
    --although you could incorporate a choose folder here
    end run
    on open (these_objects) -- a list of aliases
    repeat with each_object in these_objects
    set item_info to info for each_item
    set folder_contents to (list folder item_info)
    if kind of item_info is "Folder" and folder_contents contains "0000_Readme" then -- only process job folders
    set job_number to text 3 thru 6 of name of item_info
    process (eachobject,jobnumber)
    else --not a job folder
    display dialog "I only work with proper job folders." buttons {"OK"} with icon note giving up after 3 -- move on to next item in list
    end if
    end open
    on process (topfolder,jobnumber)
    tell application "Finder"
    set folder_contents to every item of top_folder
    repeat with each_item in folder_contents
    set generic_name to name of each_item
    if generic_name begins with "0000_" then
    set name of each_item to job_number & text 5 thru -1 of generic_name --everything from the underscore to the end
    end if
    end repeat
    end tell
    end process
    --end script
    The droplet will process multiple folders with different job numbers, without any user interaction. The name of the internal files and folders is derived from the name of the dropped folder.
    Hope it helps,
    (Although I don't see why the accounting software shouldn't do all of this for you...)
    H

  • When I am running Firefox I am unable to open folders and files with Windows Explorer (Windows 7). This is so frustrating and all attempts to fix have been unsuccesful

    There is a clash with Windows 7 and Firefox that prevents one opening files and folders.

    Hi Dollie,
    I am wondering whether you want to upload multiple documents into SharePoint library once.
    If yes, you can try to use Drag and drop feature in SharePoint 2013 to upload multiple documents into SharePoint library.
    More information about Drag and drop feature, you can refer to:
    http://www.sharepointanalysthq.com/2012/12/drag-and-drop-in-sharepoint-2013/
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Deleted folders and files

     How do I retrieve imported Windows Live Mail storage folders and files deleted during Windows Refresh?

    Hi Torsten,
    I've actually seen that article before and followed some of the instructions but I think SCCM 2012 SP1 introduced the capability for SCCM to automatically delete files so you don't need to run the script (which I couldn't use anyways since I'm not running
    on Windows Server 2012).
    I've reviewed the wsyncmgr.log file and I can see it showing that it is removing some items so I know the automatic clean up is working.
    My issue is that I've got folders and files on my distribution drive that have updates in them that are listed as not downloaded or deployed in SCCM. For example, a while back (late 2012) I download and deployed a lot of the "Critical
    Updates" and put them into an update group and a deployment package.  But I've since deleted both this update group and deployment package from SCCM but the folder used by the deployment package and it's contents are still on the drive. 
    These are the things I'm trying to clean up.
    Is it safe to just delete this folder and it's contents from the drive?
    Thanks
    Nick

  • Download Helper, even with paid converter upgrade, gives "Invalid Capture File" errors and will not record audio, with "File Creation Error - Unable to rename/copy audio file" Error.

    Download Helper Screen Capture worked to capture video if the default "no audio" option is active. But, no audio. The "speakers" or "microphone" audio options are confusing....the audio to be captured is from the video, so what do you choose? With either "speakers" or "microphone" selected, the captured file has poor audio and no video. Re-capture efforts (speakers) get "Invalid capture file error" and "File Creation error- Unable to rename/copy audio file"
    The paid upgrade of "Converter" doesn't work.
    Instructive documentation - not very good.
    Suggestions - Need time delay between initiation of "Record" and starting the video to be recorded.
    Could use timer tracking of the record process.
    Are there operating system limitations? (Have Windows XP Pro)

    That is an issue for the developer of that Download Helper.

  • Plugged in memory card, exsiting folders and file names were renamed and unreadable

    First time using this forum, so excuse and formatting mistakes. I will try to provide as much information as possible.
    Today I plugged in my 16gb Kingston memory card after a shoot. The memory card had existing folders and files in it. When I looked at it in Bridge, though, the folders had been renamed as such: DCIM had changed to DBIL, _EDIT had changed to _^EDIT, _MG_7674.CR2 had changed to _LG^7674.CR2 and so forth. Lots of replaced letters and added symbols. Also, nothing can be opened now. I tried copying on of the images to my desktop, renaming to it's original name, but that did not work. I also plugged it back into the camera, and what was readable moments ago is now resulting in a "No Image" screen.
    Help!
    I am using Adobe Bridge CS6, a macbook pro with OS X version 10.6.8, and a canon 7D

    Have you applied all updates to CS6?  You should be at Photoshop CS6 13.0.6.

  • How get SharePoint Library Folders and Files directory structure in to my custom web site.

    Hi,
    Actually my requirement is, I would like to pass site name and document library name as a parameter and get a folders and files from the document library and form the directory structure by using Treeview control in my web site.
    How should i get? Using Web service / object model?
    Web service would return the dataset as a result so from that how could i form the directory structure using Treeview control.
    I will select specified files and folders then i ll update sharepoint document library columns for corresponding selected files.
    Can anyone help over this, that would be great appreciate.
    Thanks in Advance.
    Poomani Sankaran

    Hello,
    Here is the code to iterate through sites and lists:
    //iterate through sites and lists
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite site = new SPSite(webUrl)) {
    using (SPWeb oWebsite = site.OpenWeb())
    SPListCollection collList = oWebsite.Lists;
    foreach (SPList oList in collList)
    {//your code goes here }
    Then use RecursiveAll to get all files and folders.
    http://www.codeproject.com/Articles/116138/Programatically-Copy-and-Check-In-a-Full-Directory
    http://sharepoint.stackexchange.com/questions/48959/get-all-documents-from-a-sharepoint-document-library
    Here is the full code:
    http://antoniolanaro.blogspot.in/2011/04/show-document-library-hierarchy-in-tree.html
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Can't add folders nor rename folders or files.

    I'm setting up an A1342 MacBook and now I'm unable to add any folders nor to rename folders or files. Where do I go to unlock these? Looked all around OS Preferences, & don't see what I need to do.

    What version of the Mac operating system is running on your MacBook? (Go to the Apple menu, select About this Mac and look for the version number.)
    If you select a folder and then Get Info for it (command-i on your keyboard or File menu > Get Info) are you able to change the name there? What does it say for Sharing & Permissions?
    Best of luck.

  • Unable to directly open .xlsx files in sharepoint 2010?

    Hi,
    I am Unable to directly open .xlsx files in sharepoint 2010.
    Please help me to solve the above problem.

    Hi sudhir,
    For enabling anonymous access, you need to enable it at web application level and site collection level.
    At web application level: Central Administration->Application Management->Manage web applications->[your web application]->Authentication Providers->Default->Enable anonymous access.
    At site collection level: Your top site->Site actions->Site Settings->Site Permissions->Anonymous Access under Permission Tools ribbon->Anonymous users can access : Lists and Libraries.
    As you don't want anonymous users to access the linraries of the subsite, you need to break permission inhertance. You need to go to the sub site->Site settings->Site permissions-> clicking Stop inheriting permission. Then click Anonymous Access,
    and select Nothing.
    After the above, the anonymous users will not access the subsite.
    After breaking perimission inhertance, the sub site will have unique permission, and it will not be affacted by the top site. And for existing users who have permissions on the sub site, their permission is not changed on the sub site.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • I am running Lion 10.7.2 and I have an external drive hooked to my time machine. I can't rename folders and when trying, I get an error code 8076. The checkbox "ignore permissions for this device" does not show on volume info. Help please???

    I am running Lion 10.7.2 and I have an external drive hooked to my time machine. I can't rename folders and when trying, I get an error code 8076. The checkbox "ignore permissions for this device" does not show on volume info. Help please???

    The TIme Machine volume does not have that checkbox.
    I think the issue is with your Finder...
    Go to Finder "Go" menu hold the option key and choose Library. Then go to Preferences trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again.
    (You will have to reset a few finder prefs the way you like them.)

  • Folders and Files Locked After Migrating

    I replaced my beloved iMac G5 with a new 27" Intel iMac. I migrated my files over to the new Mac using Migration Assistant. Now, all [or all that I've tried] of my Folders and Files are locked so I can't rename them or add new files to a folder without first Getting Info, then unlocking, typing in my PW and changing the Privileges to Read & Write for everyone. I'm the Administrator -- and the only account on the Mac. My account shows that I have both Read & Write Privileges, but that doesn't seem to be enough for the new Mac.
    Any suggestions? It's rather time consuming to have to reset the Privileges every time I try to save a file to a new Folder.
    Thanks.

    Thanks again. That was helpful. I wish the Genius at the Apple Store had bothered to explain that there would be two accounts.
    If I can trouble you a bit more. While I understand that I shouldn't merge the two accounts, there are now some files under the "new" account that I need to have in the "migrated" account. What's the best way to move them? I tried copying them on to an External HD, but when I tried to copy them in to the Merged account I get nothing but Error -36 [and everything stops b/c of .ds_store files. I've been looking at posts about .ds_store files and it seems that lots of people are having problems with them and that there doesn't seem to be an easy fix. So much for the Intuitive thinking of just copying files from one drive to another.] The External is Mac Journaled -- I reformatted it yesterday just to be sure.

  • Can`t rename folders or files in nfs windows 2012R2

    I can not rename
    folders or files that are in a nfs
    unit. When I try to rename I get the
    error "Invalid device", this only
    happens in windows 2012r2 or
    2012 in windows 2008r2 works with
    the same nfs unit.
    In
    the event viewer no errors.
    you know it
    is happening?

    Hi,
    Based on my research, the issue is a bug in Windows Server 2012 and 2012 R2. It needs some time to figure out the proper fixes, so please wait for a future patch. If there is a solution or workaround, I will post it in this thread. 
    Thank you for your understanding and support.
    Best Regards,
    Mandy 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • MSN Premium Local Folders and files

    My XP machine quit but the HD is OK and contains my local folders and files for Verizon DSL MSN Premium. I have located the folders and files on the old HD, but can't determine how and where I should move them to on the new WIn7 computer. The folders and files have unusual file extensions.  I've successfully reloaded MSN Premium on my new machine and e-mail send and receive is OK. I have at least a 100 local folders and 1500 e-mails so I need to automate the move process.  Since my old computer is no longer functional I can't use Microsoft Easy Transfer to move the folders and files from the old computer to the new one.

    The UNC path is the easiest approach and should work. You can then use your standard (Non SharePoint specific) Move-Item etc. commandlets.
    To use the SharePoint PowerShell snapin you need to be running the commands on the SharePoint server with a highly privileged account. There are some nice tricks you can do if you're doing that but they probably aren't relevant to you.
    The UNC Path is generally the URL to the folder with the forward slashes turned to backward slashes.
    http://webapplication.domain.com/sites/sitecollection/subsite/documentLibrary/default.aspx
    becomes
    \\webapplication.domain.com\sites\sitecollection\subsite\documentLibrary\
    Note that you have to chop off a bit of the URL on the end so it's just to the document library but that's about the only tricky bit.

  • MY system folder, including hidden folders are littered with duplicate folders and files with the suffix (from old Mac) How do I remove them

    I have a Macbook Pro running Leopard 10.5.8. I had a problem with my my operating system (my fault, I moved a file I shoudnt have) couldnt boot up but was able to boot up from a backup. I managed to repair my original system except now all the system folders, including hidden folders are littered with duplicate folders and files with the suffix (from old Mac).  For the most part the dupes are an exact copy, but not always.  I want to remove them to free up space and cant imagine duplicate folders in the /system/library are not hindering my computer. But I dont know where to start and am afraid of doing irreparable damage. Any ideas

    pacull,
    Use iCal>View>Show Notifications to choose what to do with the notification.

Maybe you are looking for

  • Problem launching itunes on XP

    I downloaded itunes 7.6.2.9 and when I launch the app I get the windows error reporting error: AppName: itunes.exe AppVer: 7.6.2.9 ModName: unknown ModVer: 0.0.0.0 Offset: 000b0120 I also did the dll modification of four dll files as well. Any sugges

  • HT4623 itune not recongnizing iphone

    My itunes account is not recognizing my iphone and I have a new computer with windows 8. I used to just plug it in and it would prompt me to sync and update my phone.  I cant even find it on my computer. any suggestions would help?

  • Oracle 8i hash parallel update question

    Hello All, Fairly new to Oracle (old Sybase guy). Using Oracle 8i. Trying to get an update to run in parallel against a table. Partitioned the table 4 ways using hash partitioining. Please see the following query/plan. I am trying to determine if thi

  • Ipad already sync'd with other iTunes Library

    We recently upgraded our PC to Windows 7 and now when I go to sync my iPad I get an error message that my Ipad is sync'd with another iTunes Library. I have read a few disucssions on this but am still not clear on what to do. Before we upgraded I did

  • Change behavior of 'Please select a forum ...' box in updated left rail

    Hello, I like the recent change to the selected forums that are displayed in the left rail. However, I think that it would be helpful for the action of clicking on the 'Please select a forum ...' box to be similar to what happens when you click on th