File.Find question

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Solmos
    New Member
    • Aug 2006
    • 355

    File.Find question

    The acction File.Find suport find for Hidden files?

    or if not possible

    another metode?

    thx
  • Mina
    Forum Member
    • Oct 2005
    • 630

    #2
    YES.
    You can find hidden files using File.Find

    How do I know?
    I Experimented
    (hint! hint!)

    Comment

    • Solmos
      New Member
      • Aug 2006
      • 355

      #3
      Code:
      table File.Find ( 
       string   Folder,
      
      string   Filename,
      
      boolean  Recurse = false,
      
      boolean  IncludeFolders = false,
      
      function CallbackFunction = nil,
      
      function FileFoundCallbackFunction = nil )
      In my system NOT detect hidden files...

      One example please!

      Comment

      • Autoplayit07
        Forum Member
        • Nov 2007
        • 15

        #4
        Maby this will help
        put this on a button before the code that performes the search for the hidden file.
        Code:
        Registry.SetValue(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", "Hidden", "1", REG_SZ);
        hope that helps!

        Comment

        • Solmos
          New Member
          • Aug 2006
          • 355

          #5
          It is not possible to find hidden files without having to change anything in the registry?

          thx

          Comment

          • Autoplayit07
            Forum Member
            • Nov 2007
            • 15

            #6
            One way would be to ask the user thru a message box ,ask him/her if they would please go to Tools>Folder Options>view and enable "show hidden Files and Folders". another way, i can't think of right now.
            Last edited by Autoplayit07; 12-15-2007, 09:29 AM.

            Comment

            • Solmos
              New Member
              • Aug 2006
              • 355

              #7
              NOT

              this not valid...

              I need search for hidden files, and NOT modification in registry or system

              ONLY FILE.FIND!

              Comment

              • Solmos
                New Member
                • Aug 2006
                • 355

                #8
                Please Helkp!!!!!!!!!!!!!!!!!!!!!!!!!!

                Is Or Not Possible Search For Hidden Files With File.find????????

                Thx

                Comment

                • Solmos
                  New Member
                  • Aug 2006
                  • 355

                  #9
                  Problem resolved :yes

                  Comment

                  • Bags
                    Forum Member
                    • Mar 2006
                    • 61

                    #10
                    People really need to RTFM that comes with the product.

                    Comment

                    Working...
                    X