Visual Studio Code download existing codeUnable to convert MDAPI Project -> SFDXHow to enable compile on save on Visual Studio with sfdx-vscode plugin?How do I manage my salesforce communities with sfdx?Two SFDX project folder structure questionsSFDX PersonAccount: ERROR: Entity of type 'RecordType' named 'Account.Business_Account' cannot be foundhow to use 2GP unlocked packaged for existing projectHow to switch between Salesforce DX orgs/projects when using Visual Studio CodeSFDX: create project using manifest not availableDeploying existing lightning components to scratch org using SFDXWhat's the most efficient way to create a permission set for a Salesforce App?

Multi tool use
Multi tool use

Statue Park: Five

List of lists elementwise greater/smaller than

If the Charles SSL Proxy shows me sensitive data, is that data insecure/exposed?

Filter a file list against an integer array?

400–430 degrees Celsius heated bath

Way of refund if scammed?

Will this series of events work to drown the Tarrasque?

Does a windmilling propeller create more drag than a stopped propeller in an engine out scenario?

How would a physicist explain this starship engine?

Is presenting a play showing Military characters in a bad light a crime in the US?

German Noun Roots of Germanic Origin with Multiple Non-Schwa Syllables

What should I wear to go and sign an employment contract?

Managing heat dissipation in a magic wand

What was the primary motivation for a historical figure like Xenophon to create an extensive collection of written material?

Does the Aboleth have expertise in History and Perception?

How could the B-29 bomber back up under its own power?

1950s or earlier book with electrical currents living on Pluto

Why was Harry at the Weasleys' at the beginning of Goblet of Fire but at the Dursleys' after?

Why is there no current between two capacitors connected in series?

Existence of a model of ZFC in which the natural numbers are really the natural numbers

What is this dime sized black bug with white on the segments near Loveland Colorodao?

How to draw with Tikz a chord parallel to AC that passes through a point?

How do we properly manage transitions within a descriptive section?

Good examples of "two is easy, three is hard" in computational sciences



Visual Studio Code download existing code


Unable to convert MDAPI Project -> SFDXHow to enable compile on save on Visual Studio with sfdx-vscode plugin?How do I manage my salesforce communities with sfdx?Two SFDX project folder structure questionsSFDX PersonAccount: ERROR: Entity of type 'RecordType' named 'Account.Business_Account' cannot be foundhow to use 2GP unlocked packaged for existing projectHow to switch between Salesforce DX orgs/projects when using Visual Studio CodeSFDX: create project using manifest not availableDeploying existing lightning components to scratch org using SFDXWhat's the most efficient way to create a permission set for a Salesforce App?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








6















I have just installed and configured Visual Studio Code. I have authorized my staging organization which contains a grip of apex classes and custom objects. How can I download the existing code into the newly created project?



I get no results with:



sfdx force:source:retrieve --sourcepath c:Users*****Projects****force-app









share|improve this question




























    6















    I have just installed and configured Visual Studio Code. I have authorized my staging organization which contains a grip of apex classes and custom objects. How can I download the existing code into the newly created project?



    I get no results with:



    sfdx force:source:retrieve --sourcepath c:Users*****Projects****force-app









    share|improve this question
























      6












      6








      6


      1






      I have just installed and configured Visual Studio Code. I have authorized my staging organization which contains a grip of apex classes and custom objects. How can I download the existing code into the newly created project?



      I get no results with:



      sfdx force:source:retrieve --sourcepath c:Users*****Projects****force-app









      share|improve this question














      I have just installed and configured Visual Studio Code. I have authorized my staging organization which contains a grip of apex classes and custom objects. How can I download the existing code into the newly created project?



      I get no results with:



      sfdx force:source:retrieve --sourcepath c:Users*****Projects****force-app






      salesforcedx visualstudiocode






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 7 at 17:50









      Layton EversonLayton Everson

      1334




      1334




















          2 Answers
          2






          active

          oldest

          votes


















          4














          Another option is to use the SFDX: Create Project With Manifest command in VS Code (equivalent to using sfdx force:project:create with the -x or --manifest option), which will create your project with a manifest/package.xml file, that includes wildcard selectors for all the custom code types: ApexClass, ApexComponent, ApexPage, ApexTestSuite, ApexTrigger, and AuraDefinitionBundle, as well as StaticResource. Once you've authorized to a dev org or sandbox org that has code in it, you can use SFDX: Retrieve Source in Manifest From Org within VS Code. You can right-click on the package.xml file or use the command palette to find the command. This command is equivalent to sfdx force:source:retrieve -x ./manifest/package.xml.






          share|improve this answer

























          • Nice -- Learned something!

            – Vernon Keenan
            May 8 at 14:13











          • Thank you for you direction here, it was very helpful.

            – Layton Everson
            May 8 at 19:54


















          8














          You don't need --sourcepath. It looks at where you are pointing and tries to pull items which match what you have there already.



          What you do need is a package.xml file to get your entire metadata database; you might need help getting that file for your particular org.



          Instead, you can do the following to get going with Apex or Lightning Component development:



          force:project:create -n MyProject
          cd MyProject
          sfdx force:source:retrieve -m CustomObject
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m ApexPage
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m AuraDefinitionBundle
          sfdx force:source:retrieve -m LightningComponentBundle


          or you can use this nifty one-liner:



          sfdx force:source:retrieve -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle


          That will populate your source tree, and --sourcepath will work when it's pointed at one of those folders.






          share|improve this answer




















          • 2





            Just saw your version. PS you can combine -m params, like -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle.

            – sfdcfox
            May 7 at 18:09






          • 1





            I kinda like to spread out the code when teaching!

            – Vernon Keenan
            May 7 at 18:22






          • 1





            Thank you this is very helpful. I wish I could mark two correct answers.

            – Layton Everson
            May 8 at 19:53











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "459"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f261511%2fvisual-studio-code-download-existing-code%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          4














          Another option is to use the SFDX: Create Project With Manifest command in VS Code (equivalent to using sfdx force:project:create with the -x or --manifest option), which will create your project with a manifest/package.xml file, that includes wildcard selectors for all the custom code types: ApexClass, ApexComponent, ApexPage, ApexTestSuite, ApexTrigger, and AuraDefinitionBundle, as well as StaticResource. Once you've authorized to a dev org or sandbox org that has code in it, you can use SFDX: Retrieve Source in Manifest From Org within VS Code. You can right-click on the package.xml file or use the command palette to find the command. This command is equivalent to sfdx force:source:retrieve -x ./manifest/package.xml.






          share|improve this answer

























          • Nice -- Learned something!

            – Vernon Keenan
            May 8 at 14:13











          • Thank you for you direction here, it was very helpful.

            – Layton Everson
            May 8 at 19:54















          4














          Another option is to use the SFDX: Create Project With Manifest command in VS Code (equivalent to using sfdx force:project:create with the -x or --manifest option), which will create your project with a manifest/package.xml file, that includes wildcard selectors for all the custom code types: ApexClass, ApexComponent, ApexPage, ApexTestSuite, ApexTrigger, and AuraDefinitionBundle, as well as StaticResource. Once you've authorized to a dev org or sandbox org that has code in it, you can use SFDX: Retrieve Source in Manifest From Org within VS Code. You can right-click on the package.xml file or use the command palette to find the command. This command is equivalent to sfdx force:source:retrieve -x ./manifest/package.xml.






          share|improve this answer

























          • Nice -- Learned something!

            – Vernon Keenan
            May 8 at 14:13











          • Thank you for you direction here, it was very helpful.

            – Layton Everson
            May 8 at 19:54













          4












          4








          4







          Another option is to use the SFDX: Create Project With Manifest command in VS Code (equivalent to using sfdx force:project:create with the -x or --manifest option), which will create your project with a manifest/package.xml file, that includes wildcard selectors for all the custom code types: ApexClass, ApexComponent, ApexPage, ApexTestSuite, ApexTrigger, and AuraDefinitionBundle, as well as StaticResource. Once you've authorized to a dev org or sandbox org that has code in it, you can use SFDX: Retrieve Source in Manifest From Org within VS Code. You can right-click on the package.xml file or use the command palette to find the command. This command is equivalent to sfdx force:source:retrieve -x ./manifest/package.xml.






          share|improve this answer















          Another option is to use the SFDX: Create Project With Manifest command in VS Code (equivalent to using sfdx force:project:create with the -x or --manifest option), which will create your project with a manifest/package.xml file, that includes wildcard selectors for all the custom code types: ApexClass, ApexComponent, ApexPage, ApexTestSuite, ApexTrigger, and AuraDefinitionBundle, as well as StaticResource. Once you've authorized to a dev org or sandbox org that has code in it, you can use SFDX: Retrieve Source in Manifest From Org within VS Code. You can right-click on the package.xml file or use the command palette to find the command. This command is equivalent to sfdx force:source:retrieve -x ./manifest/package.xml.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited May 7 at 20:54

























          answered May 7 at 19:16









          Thomas TaylorThomas Taylor

          2,5491333




          2,5491333












          • Nice -- Learned something!

            – Vernon Keenan
            May 8 at 14:13











          • Thank you for you direction here, it was very helpful.

            – Layton Everson
            May 8 at 19:54

















          • Nice -- Learned something!

            – Vernon Keenan
            May 8 at 14:13











          • Thank you for you direction here, it was very helpful.

            – Layton Everson
            May 8 at 19:54
















          Nice -- Learned something!

          – Vernon Keenan
          May 8 at 14:13





          Nice -- Learned something!

          – Vernon Keenan
          May 8 at 14:13













          Thank you for you direction here, it was very helpful.

          – Layton Everson
          May 8 at 19:54





          Thank you for you direction here, it was very helpful.

          – Layton Everson
          May 8 at 19:54













          8














          You don't need --sourcepath. It looks at where you are pointing and tries to pull items which match what you have there already.



          What you do need is a package.xml file to get your entire metadata database; you might need help getting that file for your particular org.



          Instead, you can do the following to get going with Apex or Lightning Component development:



          force:project:create -n MyProject
          cd MyProject
          sfdx force:source:retrieve -m CustomObject
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m ApexPage
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m AuraDefinitionBundle
          sfdx force:source:retrieve -m LightningComponentBundle


          or you can use this nifty one-liner:



          sfdx force:source:retrieve -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle


          That will populate your source tree, and --sourcepath will work when it's pointed at one of those folders.






          share|improve this answer




















          • 2





            Just saw your version. PS you can combine -m params, like -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle.

            – sfdcfox
            May 7 at 18:09






          • 1





            I kinda like to spread out the code when teaching!

            – Vernon Keenan
            May 7 at 18:22






          • 1





            Thank you this is very helpful. I wish I could mark two correct answers.

            – Layton Everson
            May 8 at 19:53















          8














          You don't need --sourcepath. It looks at where you are pointing and tries to pull items which match what you have there already.



          What you do need is a package.xml file to get your entire metadata database; you might need help getting that file for your particular org.



          Instead, you can do the following to get going with Apex or Lightning Component development:



          force:project:create -n MyProject
          cd MyProject
          sfdx force:source:retrieve -m CustomObject
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m ApexPage
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m AuraDefinitionBundle
          sfdx force:source:retrieve -m LightningComponentBundle


          or you can use this nifty one-liner:



          sfdx force:source:retrieve -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle


          That will populate your source tree, and --sourcepath will work when it's pointed at one of those folders.






          share|improve this answer




















          • 2





            Just saw your version. PS you can combine -m params, like -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle.

            – sfdcfox
            May 7 at 18:09






          • 1





            I kinda like to spread out the code when teaching!

            – Vernon Keenan
            May 7 at 18:22






          • 1





            Thank you this is very helpful. I wish I could mark two correct answers.

            – Layton Everson
            May 8 at 19:53













          8












          8








          8







          You don't need --sourcepath. It looks at where you are pointing and tries to pull items which match what you have there already.



          What you do need is a package.xml file to get your entire metadata database; you might need help getting that file for your particular org.



          Instead, you can do the following to get going with Apex or Lightning Component development:



          force:project:create -n MyProject
          cd MyProject
          sfdx force:source:retrieve -m CustomObject
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m ApexPage
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m AuraDefinitionBundle
          sfdx force:source:retrieve -m LightningComponentBundle


          or you can use this nifty one-liner:



          sfdx force:source:retrieve -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle


          That will populate your source tree, and --sourcepath will work when it's pointed at one of those folders.






          share|improve this answer















          You don't need --sourcepath. It looks at where you are pointing and tries to pull items which match what you have there already.



          What you do need is a package.xml file to get your entire metadata database; you might need help getting that file for your particular org.



          Instead, you can do the following to get going with Apex or Lightning Component development:



          force:project:create -n MyProject
          cd MyProject
          sfdx force:source:retrieve -m CustomObject
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m ApexPage
          sfdx force:source:retrieve -m ApexClass
          sfdx force:source:retrieve -m AuraDefinitionBundle
          sfdx force:source:retrieve -m LightningComponentBundle


          or you can use this nifty one-liner:



          sfdx force:source:retrieve -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle


          That will populate your source tree, and --sourcepath will work when it's pointed at one of those folders.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited May 7 at 18:20

























          answered May 7 at 18:06









          Vernon KeenanVernon Keenan

          15113




          15113







          • 2





            Just saw your version. PS you can combine -m params, like -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle.

            – sfdcfox
            May 7 at 18:09






          • 1





            I kinda like to spread out the code when teaching!

            – Vernon Keenan
            May 7 at 18:22






          • 1





            Thank you this is very helpful. I wish I could mark two correct answers.

            – Layton Everson
            May 8 at 19:53












          • 2





            Just saw your version. PS you can combine -m params, like -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle.

            – sfdcfox
            May 7 at 18:09






          • 1





            I kinda like to spread out the code when teaching!

            – Vernon Keenan
            May 7 at 18:22






          • 1





            Thank you this is very helpful. I wish I could mark two correct answers.

            – Layton Everson
            May 8 at 19:53







          2




          2





          Just saw your version. PS you can combine -m params, like -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle.

          – sfdcfox
          May 7 at 18:09





          Just saw your version. PS you can combine -m params, like -m CustomObject,ApexClass,ApexPage,ApexTrigger,LightningComponentBundle,AuraDefinitionBundle.

          – sfdcfox
          May 7 at 18:09




          1




          1





          I kinda like to spread out the code when teaching!

          – Vernon Keenan
          May 7 at 18:22





          I kinda like to spread out the code when teaching!

          – Vernon Keenan
          May 7 at 18:22




          1




          1





          Thank you this is very helpful. I wish I could mark two correct answers.

          – Layton Everson
          May 8 at 19:53





          Thank you this is very helpful. I wish I could mark two correct answers.

          – Layton Everson
          May 8 at 19:53

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Salesforce Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f261511%2fvisual-studio-code-download-existing-code%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          znJMgLwd7lMU,4hPT3phCD,2GdAMff,8Psz59vTx,COq129GtHlW4Ndi UCyEfq9I4p5gn fvKFaSZKR2lOh0K beK4Zo Nl,PrL YhY5WZJ
          8rDcjkPQ7rFfLGiJNMkE5RK,soU,NznaS5D6ijV8GRbEzdDMg,kTK2qTtufaQiJm1h,K mJ,OJfDPI0nXb7v5OSiBOKAFfckYNG,aoGt

          Popular posts from this blog

          Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

          Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

          Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020