How do I hide two or more directories in smb.conf?











up vote
1
down vote

favorite












I configured smb.conf that works well for sharing a directory, say "samba directory", to my Windows 10 machine. Now I want to hide two sub-directories, e.g. subdir1 and subdir2 under "samba directory", so i added the following line in in smb.conf:



veto files = subdir1, subdir2


But it does not work and only subdir2 was hidden from Windows 10 machine.



When I changed it to veto files = subdir1, subdir1 was hidden well from windows 10 visiting. So, how to hide two directories from my Windows 10 machine? Thanks!










share|improve this question




























    up vote
    1
    down vote

    favorite












    I configured smb.conf that works well for sharing a directory, say "samba directory", to my Windows 10 machine. Now I want to hide two sub-directories, e.g. subdir1 and subdir2 under "samba directory", so i added the following line in in smb.conf:



    veto files = subdir1, subdir2


    But it does not work and only subdir2 was hidden from Windows 10 machine.



    When I changed it to veto files = subdir1, subdir1 was hidden well from windows 10 visiting. So, how to hide two directories from my Windows 10 machine? Thanks!










    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I configured smb.conf that works well for sharing a directory, say "samba directory", to my Windows 10 machine. Now I want to hide two sub-directories, e.g. subdir1 and subdir2 under "samba directory", so i added the following line in in smb.conf:



      veto files = subdir1, subdir2


      But it does not work and only subdir2 was hidden from Windows 10 machine.



      When I changed it to veto files = subdir1, subdir1 was hidden well from windows 10 visiting. So, how to hide two directories from my Windows 10 machine? Thanks!










      share|improve this question















      I configured smb.conf that works well for sharing a directory, say "samba directory", to my Windows 10 machine. Now I want to hide two sub-directories, e.g. subdir1 and subdir2 under "samba directory", so i added the following line in in smb.conf:



      veto files = subdir1, subdir2


      But it does not work and only subdir2 was hidden from Windows 10 machine.



      When I changed it to veto files = subdir1, subdir1 was hidden well from windows 10 visiting. So, how to hide two directories from my Windows 10 machine? Thanks!







      samba






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 28 at 15:04









      muru

      135k19288488




      135k19288488










      asked Dec 27 '17 at 12:35









      Weiyan Cheng

      112




      112






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          4
          down vote














          "veto files = subdir1, subdir2"




          Wrong syntax. Try:



          veto files = /subdir1/subdir2


          From the man pages:




          veto files (S)



                 This is a list of files and directories that are neither visible
          nor accessible. Each entry in the list must be separated by a '/',
          which allows spaces to be included in the entry.






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2faskubuntu.com%2fquestions%2f989886%2fhow-do-i-hide-two-or-more-directories-in-smb-conf%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            4
            down vote














            "veto files = subdir1, subdir2"




            Wrong syntax. Try:



            veto files = /subdir1/subdir2


            From the man pages:




            veto files (S)



                   This is a list of files and directories that are neither visible
            nor accessible. Each entry in the list must be separated by a '/',
            which allows spaces to be included in the entry.






            share|improve this answer



























              up vote
              4
              down vote














              "veto files = subdir1, subdir2"




              Wrong syntax. Try:



              veto files = /subdir1/subdir2


              From the man pages:




              veto files (S)



                     This is a list of files and directories that are neither visible
              nor accessible. Each entry in the list must be separated by a '/',
              which allows spaces to be included in the entry.






              share|improve this answer

























                up vote
                4
                down vote










                up vote
                4
                down vote










                "veto files = subdir1, subdir2"




                Wrong syntax. Try:



                veto files = /subdir1/subdir2


                From the man pages:




                veto files (S)



                       This is a list of files and directories that are neither visible
                nor accessible. Each entry in the list must be separated by a '/',
                which allows spaces to be included in the entry.






                share|improve this answer















                "veto files = subdir1, subdir2"




                Wrong syntax. Try:



                veto files = /subdir1/subdir2


                From the man pages:




                veto files (S)



                       This is a list of files and directories that are neither visible
                nor accessible. Each entry in the list must be separated by a '/',
                which allows spaces to be included in the entry.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Dec 27 '17 at 20:50

























                answered Dec 27 '17 at 17:14









                Morbius1

                1,226127




                1,226127






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • 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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2faskubuntu.com%2fquestions%2f989886%2fhow-do-i-hide-two-or-more-directories-in-smb-conf%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







                    Popular posts from this blog

                    Quarter-circle Tiles

                    build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

                    Mont Emei