Creating a alias or a new folder is blocked

I have a MM as headless server. It has two users both with admin rights.
I am working in the folder Library/application support/X
It refuses to let me create more folders in folder X or any aliases for that matter.
Anybody knows how to get this changed so I can do that? Folders I can create elsewhere and drop in folder X (it is a pain however) but for aliases I have no workaround.
I cannot log in as root (I suppose this would solve it) as it is a remote server and I have no control as it starts up.
Any suggestions appreciated.

Hi there
What version of RoboHelp are you using?
Did you create the folder from inside RoboHelp or did you create it using Windows Explorer?
Cheers... Rick

Similar Messages

  • How do I create an alias of my home folder with the little house icon to appear on my desktop, please?

    In Mavericks, how do I create an alias to my home folder, complete with the little house icon, to put on my desktop, please? I can get the folder, but not with the icon.
    Chris Mack
    As you were, solved, thank you. CM
    Message was edited by: ccrm

    Open Finder. Under Preferences > Sidebar > Devices > check Hard disks.
    Navigate to your home folder from "Macintosh HD" (or whatever the name of your boot volume is) in the finder. Set the view to column.
    Once you reach the path of your home folder, select it, hold down the key combination option + command and drag the alias to your desktop.

  • Need help in creating multiple sub folders in new folder

    hi all,
    need to seek some expert advise.
    i need to create an automator work flow as once launch, it will show a dialog asking user for the new folder name to be created, and asking user how many sub folders to be created.
    i have done the following and got stuck...
    requirement is user ket in foldername upon dialog for example "test" and no of sub folders to create exp "5"
    it will create a folder call "test" on desktop n 5 subfolder as: test1 , test2, test3, test4, test5.
    Apple script

    Automator gets a bit unweildy when trying to vary things outside of what the actions provide.  Since you are already using an AppeScript in your workflow, might as well do the whole thing:
    set baseFolder to (path to desktop) -- the location to create the folder
    display dialog "Please provide a new folder name:" default answer "test"
    set folderName to text returned of the result
    repeat -- keep repeating until a number is returned
      display dialog "How many subfolders?" default answer "5"
      set theNumber to text returned of the result
        try -- test the result
          set theNumber to theNumber as integer
          exit repeat -- success
        end try
    end repeat
    tell application "Finder"
      try -- make new folder
        set newFolder to (make new folder at baseFolder with properties {name:folderName})
      on error number -48 -- skip errors if the folder is already there
        set newFolder to ((baseFolder as text) & folderName) as alias
      end try
      repeat with X from 1 to theNumber
        try -- make new subfolder
          make new folder at newFolder with properties {name:folderName & X}
        on error number -48 -- skip errors if the folder is already there
        end try
      end repeat
    end tell

  • Error when creating a bookmark in a new folder - defaults to main folder for that group

    When I want to create a new bookmark sub-folder (for example, I have a "Photography" folder and I want to save a URL to a new folder under that category called "Cameras"), I click the "New Folder" button, and it somehow changes the name of main folder ("Photography") to the highlighted "New Folder". However, when I go to my bookmarks afterwards, the "Photography" folder is there and there is a new folder called "New Folder". It seems to be corrupted or something, but I am not sure. It has been doing this for the last few versions. Now, I am on version 11.0.
    Any help is appreciated! Thank you in advance.

    Since this doesn't happen with a new profile, I think your best solution is going to be to use a new profile and migrate you data. The article, [[Recovering important data from an old profile]] has instructions for doing this.
    An easier way to get this done is to use a new feature coming to Firefox 13. You can get access to it by downloading the Aurora build from here - http://www.mozilla.org/en-US/firefox/aurora/
    Once you install Aurora, type about:support in the location bar. This will bring up the special troubleshooting information page. In the upper right hand side there is a button to "Reset Firefox". Clicking this will create a new profile for you and migrate over your bookmarks, passwords, history for you automatically. I've used it and works well. After completing that, you can continue to use Aurora if you want or you can uninstall it and go back to the regular version of Firefox.

  • Can't create an alias for User home folder for a second user

    Please help:
    I can't make an alias of a User home folder of a second user. I can successfully make an alias of a home folder of the first user. The computer says the folder is in use and to wait for some activity to complete, or that I don't have enough privileges. There are no activities happening and both accounts are administrator level. Is this a behavior of OS 10.5.6? I created alias for the two users before, but had unrelated problems and wiped the drive, re-installed 10.5.6 and now I can't do it.
    Much thanks and aloha - Rocky

    hi Petar,
    Wish it was that simple where i can just change the ID to ACT but unfortunately alot of our users like to hardcode there currentview and changing the scenario dimensions would take a big effort and alot of support work.  We had changed one of the dimension members before and we got phone calls asking why the report doesn't work for weeks.  Do you know if the NW version of BPC has that capability?
    Thanks,
    Elmer

  • I created a new folder on My Picture on my PC, but when I went into my device to sync the new folder i created i couldnt find it. How could I make it a choice of the selected folder so I can sync that onto my device?

    I created a new folder on "My Pictures" on my PC to sync some new photos, but when I went into my device to sync the new folder I created I couldnt find the new folder under "selected folders" in the sync photo section. How could I make it a choice to find my new folder I created so i could find it under "selected folder" so I could be able to sync?

    Hi there!
    Could you clarify for me: are you still using Photoshop Elements on your new Mac or are you now using the Revel Mac Desktop app?
    Thank you!
    Glenyse

  • Apple Script won't create new folder

    Hi all,
    First of all, let me explain that in no particular way I am any good with applescript. I find it confusing at the best of times. I've got a bit of code that will check to see if a new folder is created in a specific location. If a new folder is created, then it will copy the name of the folder and create a new folder with the same name in a different place. The reason for this is that I separate my file types (I'm a photographer) and I keep my RAW files in one folder, my PSD files in another, my JPEGs in another and so on. The current code I have worked up until I installed Yosemite as well as Server on my mac mini. Here's the code:
    on adding folder items to this_folder after receiving added_items
         set p to POSIX file "/Volumes/Projects/1. Raw"
         try
              tell application "Finder"
                   repeat with item_ in added_items
                        if kind of item_ is "Folder" then --if its a folder then make another in Ra
                             make new folder at p with properties {name:item_}
                        end if
                   end repeat
              end tell
         on error
              display dialog "Error occurred"
              return
         end try
    end adding folder items to
    The action is set to the JPEG folder, where an application automatically adds a folder (for this example, I'll use "z. test").
    z. Test is detected in the JPEG folder, and then the folder is replicated across to the other separating folders ready for when any new files are added. Trouble is, the error occurred dialog box shows up. I have the appropriate permissions for the hard drives that the folders reside on, and are replicated to the subfolders too.
    Is there anyway of finding out what the error is that's occurring? Or am I missing something since upgrading to Yosemite/Server? Any help would be most appreciated!
    Ian
    Th

    Hi,
    You can't rename an item with an object (the item_  is an object of type alias), use the name of item_
    To know the error, use the parameter in on error block.
    Try this :
    on adding folder items to this_folder after receiving added_items
        try
            set p to "/Volumes/Projects/1. Raw" as POSIX file as alias
            tell application "Finder"
                repeat with item_ in added_items
                    if kind of item_ is "Folder" then --if its a folder then make another in Ra
                        set tName to name of item_
                        make new folder at p with properties {name:tName}
                    end if
                end repeat
            end tell
        on error err
            activate
            display dialog "Error occurred : " & err
        end try
    end adding folder items to

  • Error while creating a new folder in resource view of workbench.

    hi
    I am getting this error while creating a new folder from the resources view.
    Please help me in this regard.
    !ENTRY com.adobe.repository.ui.eclipse.forms 4 0 2009-02-19 18:18:36.340
    !MESSAGE REP-001-011: Problem creating a resource folder
    !STACK 0
    com.adobe.repository.ui.eclipse.IDERepositoryException: com.adobe.repository.bindings.dsc.client.ResourceRepositoryClientException: ALC-REP-106-000: Caught DSCException: ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: RepositoryService not found.
    at com.adobe.repository.ui.eclipse.impl.dsc.IDERepositoryDSCImpl.createFolder(IDERepositoryD SCImpl.java:117)
    at com.adobe.repository.ui.eclipse.core.Repository.createFolder(Repository.java:522)
    at com.adobe.repository.ui.eclipse.actions.NewFolderActionDelegate.workspaceRun(NewFolderAct ionDelegate.java:91)
    at com.adobe.repository.ui.eclipse.actions.WorkspaceActionDelegateRunner$1.run(WorkspaceActi onDelegateRunner.java:76)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1737)
    at com.adobe.repository.ui.eclipse.actions.WorkspaceActionDelegateRunner.run(WorkspaceAction DelegateRunner.java:83)
    at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:254)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:539)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :400)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1930)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1894)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:422)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at com.adobe.lcide.rcp.Application.run(Unknown Source)
    at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:92)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:68)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
    at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
    at org.eclipse.core.launcher.Main.run(Main.java:977)
    at org.eclipse.core.launcher.Main.main(Main.java:952)
    Caused by: com.adobe.repository.bindings.dsc.client.ResourceRepositoryClientException: ALC-REP-106-000: Caught DSCException: ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: RepositoryService not found.
    at com.adobe.repository.bindings.dsc.client.ResourceRepositoryClient.writeResource(ResourceR epositoryClient.java:920)
    at com.adobe.repository.ui.eclipse.impl.dsc.IDERepositoryDSCImpl.createFolder(IDERepositoryD SCImpl.java:114)
    ... 31 more
    Thanks
    Ullas

    Thanks Jasmin I did as you told and was able to create folder. But while installing the Event-Dsc and the workflow-dsc I am getting some internal error as given below.
    !ENTRY com.adobe.DSC_Admin_UI 4 4 2009-02-24 15:41:34.984
    !MESSAGE install of C:\Adobe\LiveCycle8.2\deploy\adobe-event-dsc.jar failed
    !STACK 0
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl._install(ComponentRegistr yImpl.java:456)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl.install(ComponentRegistry Impl.java:254)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doBMT(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:109)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:315)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invokeCall(SoapSdkEndpoint. java:138)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invoke(SoapSdkEndpoint.java :81)
    at sun.reflect.GeneratedMethodAccessor279.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:930)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
    at com.adobe.idp.dsc.provider.impl.soap.axis.InvocationFilter.doFilter(InvocationFilter.java :43)
    at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 190)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:761)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:673)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:498)
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
    at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:90)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
    at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1433)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:100)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:465)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink .java:394)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitia lReadCallback.java:113)
    at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:152)
    at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
    at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
    at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
    at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
    at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)
    Caused by: java.lang.ClassNotFoundException: com.adobe.idp.event.bootstrap.EventBootstrapImpl
    at com.adobe.idp.dsc.DSContainerSearchPolicy.findClass(DSContainerSearchPolicy.java:178)
    at org.ungoverned.moduleloader.ModuleClassLoader.loadClass(ModuleClassLoader.java:161)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:561)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl._install(ComponentRegistr yImpl.java:403)
    ... 70 more
    As I am using the trial version so I have isnatlled all the products Workbench, Server and the application server in the same machine. My System has 2GB Ram.
    Any help in this will be of great help
    Regards
    Ullas

  • Creating a new folder sometimes drives me wonky

    Have any of you found a work around for this: When I'm in the hierarchical view in the finder and want to create a new folder in one of the panes, the OS can make it difficult. If the pane is completely filled with files or folders, when you control click to bring up the context menu, the OS assumes that you want to pick a choice dealing with whatever file you were hovering over at the time.
    In order to create a new folder in that pane, I either have to do something wonky like create the folder on the desktop and drag it in, or expand the window to get blank space at the bottom of the file list.
    Is there a way to create a folder directly in a filled pane?

    You can also right click on the top of a finder window choose customize from the contextual menu & drag the new folder icon to the top of the finder window.
    Also click on the action icon (gear icon) & choose new folder from the drop down menu.
    Message was edited by: Joe Salafia

  • Syncronising is creating a new folder in Outlook w...

    I have just got a N70 phone and syncronised fine a few times with Microsoft Outlook. All of a sudden i realised that when i syncronised again the phone created a new folder in Microsoft Outlook which I cannot access and cannot delete. As it is called the same as my actual calendar when I go to syncronise again the syn gets confused and doen't do it, getting error report in PC Suite. I tried posinting it to the right folder but it still gets confused!
    I spent a few hours with a very nice person who handles my email accounts to create a new mail account to get rid of the new folder. As soon as we finally managed to get rid of these corrupt folders I syncrnised and they appered in the new account again!
    Really not sure what to do now!

    I forgot to mention that I downloaded the latest version of PC Suite off your website and that the connection is via USB Cable

  • Creating a new folder in a SharePoint library using C# Windows Application.

    I have tried to create a folder within a SharePoint document library. The coding is as follows.
    Text Box Name: txtNewFolderName
    Button Name : btnCreateNewFolder
    private void btnCreateNewFolder_Click(object sender, EventArgs e)
    //String parameters for site URL and site name
    const string siteUrl = "http://thekingsbury/";
    const string siteName = "/SiteDirectory/thekingsbury/";
    //Freeze UI
    Cursor = Cursors.WaitCursor;
    btnCreateNewFolder.Enabled = false;
    //Use SPSite constructor to assign site collection based on top-level URL
    SPSite siteCollection = new SPSite(siteUrl);
    //Assign target site (SPWeb instance) based on site name
    SPWeb site = siteCollection.AllWebs[siteName];
    //Create an instance of SPDocumentLibrary based on the named doc library list
    SPDocumentLibrary docLibrary = (SPDocumentLibrary)site.Lists["Test Library"];
    //Create instance of SPFolderCollection and add a named folder based on forms input,
    //then update library to reflect added folder
    SPFolderCollection myFolders = site.Folders;
    myFolders.Add("http://thekingsbury/Test%20Library/" + txtNewFolderName.Text + "/");
    docLibrary.Update();
    //UI clean-up
    Cursor = Cursors.Default;
    btnCreateNewFolder.Enabled = true;
    Site URL :
    http://thekingsbury/
    Site Name: thekingsbury
    Document Library  : Test Library
    My problem is when I click the button it gives an error as the following.
    The Web application at http://thekingsbury/ could not be found.
    Verify that you have typed the URL correctly.
    If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application.
    The error shows at the following statement.
    "SPSite siteCollection = new SPSite(siteUrl);"
    I created both Windows & Web solutions and the result was the same.
    Note: I have add the reference to the SharePoint using the Microsoft.SharePoint.dll file. And used the "using Microsoft.SharePoint;" statement.
    Please can someone help me on this matter.It's a real paint to me.

    The complete solution using an InfoPath 2010 form is as the below.
    using Microsoft.Office.InfoPath;
    using System;
    using System.Xml;
    using System.Xml.XPath;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Client;
    using Microsoft.SharePoint.Linq;
    namespace Create_Folder_In_SharePoint_Library
    public partial class FormCode
    public void InternalStartup()
    ((ButtonEvent)EventManager.ControlEvents["btnCreateFolder"]).Clicked += new ClickedEventHandler(btnCreateFolder_Clicked);
    public void btnCreateFolder_Clicked(object sender, ClickedEventArgs e)
    SPSite mySite = new SPSite("Http://thekingsbury/");
    SPWeb myWeb = mySite.OpenWeb();
    //Code to retreive the new library.
    XPathNavigator xLibraryName = MainDataSource.CreateNavigator();
    String NewLibraryName = xLibraryName.SelectSingleNode("/my:myFields/my:LibraryName", NamespaceManager).Value;
    //Code to retreive the library description.
    XPathNavigator xLibraryDesc = MainDataSource.CreateNavigator();
    String NewLibDesc = xLibraryDesc.SelectSingleNode("/my:myFields/my:LibraryDescription", NamespaceManager).Value;
    //Code to retreive the new folder name.
    XPathNavigator xFolderName = MainDataSource.CreateNavigator();
    String NewFolderName = xFolderName.SelectSingleNode("/my:myFields/my:FolderName", NamespaceManager).Value;
    //Creating the new library.
    myWeb.Lists.Add(NewLibraryName, NewLibDesc, SPListTemplateType.DocumentLibrary);
    myWeb.Update();
    //Creating the new folder within the new library.
    SPDocumentLibrary newDocLibrary = (SPDocumentLibrary)myWeb.Lists[NewLibraryName];
    SPFolderCollection newFolders = myWeb.Folders;
    newFolders.Add("http://thekingsbury/" + NewLibraryName + "/" + NewFolderName + "/");
    newDocLibrary.Update();
    I think everyone can use this.
     When you are generating a folder always try to avoid reserved characters  : ; # $ % ^ a and suchlike.

  • When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?

    When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?
    All of a sudden I noticed that most of the folders on my computer were no longer using the folder icon, but the generic document icon. I had to manually change back the icon being used by opening Get Info for each folder and copying and pasting the generic folder icon from some folders that remained unchanged. Now whenever I create a New Folder (right click -> "New Folder"), the icon that shows up is the generic document icon (white page with top right corner turned down). And I have to manually change it so it shows up as a folder in Finder or on my desktop. I don't know why or how this switch happened. All of the folders now on my computer look ok, but I need to change the default so when I create a New Folder it uses the correct icon.
    I have also Forced Relaunch of my Finder and rebooted the system. I downloaded Candybar but am not sure what will fix anything, so I haven't proceeded.
    Anyone know how I can do this? Thanks.

    Anyone?

  • LR 4 & 4.1 can't create new folder manually during photo import

    Windows 64, i7, 12GB RAM
    I don't seem able to create a new folder manually on photo import.  This still works fine on the same PC with LR3.6.  Anyone else seeing this?  Thanks.

    I've sometimes found the 'Make New Folder' option to be a bit hit and miss on Win7....so I generally avoid it. In your case, wouldn't it be easier to have Lightroom create the folder for you by setting up your Destination panel as follows:
    Obviously the selected target parent folder in your case would be "Photos Working Folders", use "Organize: Into One Folder", tick the Into Subfolder box and enter the name of the sub-folder you want, e.g. raw0015. As you can see, if the sub-folder doesn't yet exist, Lightroom then shows you that it will be creating it for you.

  • I can't save a file to the desktop nor create a new folder

    I extracted 2 pages from a PDF file. They are there according to the "open" dialogue but the second one is not there as an icon. I can attach it to an email but the email won't send - it says the attachments are still downloading. I can't create a new folder on the desktop to save the second PDF into. ***????

    You can write a file with the same extension as long as you lock your file while writing it. As long as your file is locked, your BizTalk receive location will not pick it up.
    So the question here really is, how is your application generating the CSV file? 
    Check the FileShare enumeration: http://msdn.microsoft.com/en-us/library/system.io.fileshare.aspx
    In your case it will be something like this:
    FileStream someFileStream= new FileStream(path, FileMode.Create,
    FileAccess.Write, FileShare.None);
    Glenn Colpaert - Microsoft Integration MVP - Blog : http://blog.codit.eu

  • When I want to organise my bookmarks most of the options are greyed out and cannot be used including create new folder! Help

    '''''''''bold text'''''''''
    When i want to organise my bookmarks most of the options on the organise bookmarks menu are greyed out and cannot be used - including create new folder etc. Help please.

    Make sure you are not in the Private Browsing Mode:
    File > Private Browsing is UNCHECKED.

Maybe you are looking for

  • How to import multiple images at the same time in illustrator?

    How to import multiple images in a document at the same time in illustrator? It's possible?

  • Assigning an application to display on a specific display

    Apparently, you are supposed to be able to right click on an application in the dock and get an option to assign it to a specific display. Unfortunately, this option does not show up when I right click and select options.  How do I turn this feature

  • Open pdf in Blackberry app

    There is an Adobe Reader app for Blackberry Z10, https://appworld.blackberry.com/webstore/content/26086872/ and I can open email attachment file use the reader, but how can I call it to open pdf file in my app?

  • Imovie  7.1.2 - Unable to create new projects

    I select a clip from library pane and drag to project pane. Project Name and Aspect Ratio window appears. I select a name and leave the aspect ratio to Widescreen (I have tried with other aspect ratios and it also fails). I then select Create. imovie

  • Freight condition type to COPA

    Dear Experts, I know only two type of condition type passed to COPA 1) Statistical Condition type 2) Condition type with 11 and 12 cost element category like - discount,rebate with 12 category and frieght and octroi charged from customer with 11 cate