ઝડપી અને સરળ: SPItemList ઓફ SPFolder વિચાર

હું શું કરવા માગો છો કે હું આ સમસ્યા ચાલુ રાખો અને Google સમજવા લાગે છે ક્યારેય, તેથી હું આ લખી હોત figured.

હું છેલ્લા સપ્તાહ અથવા બે ઇવેન્ટ રીસીવર ડિબગીંગ ઘણો કરી રહ્યો છું. The ER is defined against a document library. The individual items in the document library are tightly related to their parent folders. તેથી, I am always getting the folder of the item for various manipulations. While debugging, હું જેની ને મને ખબર છે એક વિશિષ્ટ આઇટમ માટે એક ફોલ્ડર ની મેટાડેટા સુધારવા માટે જરૂરી.

અહીં થોડી કન્સોલ એપ્લિકેશનની (ફાર્મ માં સર્વર પર ચલાવવા માટે ડિઝાઇન) બે દલીલો લે છે: આઇટમ ના ID અને ક્ષેત્ર માટે સોંપવા માટે એક મૂલ્ય, "Approval Status". It hard codes a lot of stuff and has no error checking.

આ કોડ હાર્ડ કોડેડ સાઇટ અપ દેખાય, gets a hard coded document library and then finds the indicated item. It then finds the parent folder of that item and assigns the status value.

The key lesson here for me is that SPItem doesn’t get you access to the folder. You need to use SPListItem.File.

કોઇપણ ક્રિટિક આપે છે અથવા આઇટમની ફોલ્ડર વિચાર માટે વધુ સારી રીતે સૂચવે ધ્યાન આપતા હોય તો, એક ટિપ્પણી છોડી કૃપા કરીને.

<કોડ>
નો ઉપયોગ પદ્ધતિ;
નો ઉપયોગ System.Collections.Generic;
નો ઉપયોગ System.Text;
નો ઉપયોગ Microsoft.SharePoint;
નો ઉપયોગ System.Collections;

નામસ્થળ Conchango
{
    /// <સારાંશ>
 /// </સારાંશ>
 વર્ગ ManualFolderUpdate
    {
        સ્થિર ગેરમાન્ય મુખ્ય(સ્ટ્રિંગ[] વિકલ્પોલેછે)
        {
            સ્ટ્રિંગ msh = "ManualFolderUpdate (v1.0): "; // msh = "Message Header"

 કન્સોલ.WriteLine(msh + "Starting up.  હું છેલ્લા 08/04/08 પર સંશોધિત કરવામાં આવી હતી.");

            સ્ટ્રિંગ URL = http://localhost/xyzzy;

            નો ઉપયોગ (SPSite oSPSite = નવું SPSite(URL))
            {

                નો ઉપયોગ (SPWeb oSPWeb = oSPSite.OpenWeb())
                {
                    SPList docLib = oSPWeb.Lists["Documents"];

                    કન્સોલ.WriteLine(msh + "Got the document library.");

                    કન્સોલ.WriteLine(msh + "Doc lib item count: [" + docLib.ItemCount + "].");

                    ઈન્ FolderID = 0;
                    સ્ટ્રિંગ NewStatus = "xyzzy";

                    FolderID = સિસ્ટમ.રૂપાંતર કરવું.ToInt32(વિકલ્પોલેછે[0].ToString());
                    કન્સોલ.WriteLine("Seeking folder for item: [" + FolderID + "].");

                    SPListItem li = docLib.GetItemById(FolderID);

                    SPFolder thisItemFolder = li.File.ParentFolder;

                    કન્સોલ.WriteLine(msh + "Got the parent folder.");

                    NewStatus = વિકલ્પોલેછે[1].ToString();
                    કન્સોલ.WriteLine("Setting status to [" + NewStatus + "].");

                    કન્સોલ.WriteLine("Press return to commit the update or CTRL-C to abort.");

                    કન્સોલ.ReadLine();

                    thisItemFolder.Item["Approval Status"] = NewStatus;
                    thisItemFolder.Item.Update();

                    કન્સોલ.WriteLine(msh + "Finished updating the folder.  બહાર નીકળે છે.");

                } // SPWeb મદદથી

            } // SPSite મદદથી

 કન્સોલ.WriteLine(msh + "Finished.");

        } // મુખ્ય

    } // વર્ગ foldersync
} // નામસ્થળ
</કોડ>

</અંત>

મારા બ્લોગ પર સબ્સ્ક્રાઇબ કરો.

જવાબ છોડો

તમારું ઇમેઇલ સરનામું પ્રકાશિત કરવામાં આવશે નહીં. જરૂરી ક્ષેત્રો ચિહ્નિત થયેલ છે *