Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: size of folder  (Read 4334 times)

0 Members and 1 Guest are viewing this topic.

boo

    Topic Starter


    Apprentice
  • Thanked: 1
    • Yes
    • Yes
  • Computer: Specs
  • Experience: Experienced
  • OS: Windows 8
size of folder
« on: June 09, 2007, 04:58:01 PM »
when viewing many files as details, the size of the folders are not shown. only yhe files.
is this normal and if not then how can i change it?

Comp Guy



    Apprentice

  • All that is needed
    Re: size of folder
    « Reply #1 on: June 09, 2007, 05:05:48 PM »
    Yes, this is completely normal. You can just hold your mouse over a folder to view it's size.

    boo

      Topic Starter


      Apprentice
    • Thanked: 1
      • Yes
      • Yes
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 8
    Re: size of folder
    « Reply #2 on: June 09, 2007, 05:14:44 PM »
    well thanxs
    « Last Edit: June 09, 2007, 05:51:05 PM by boo »

    Comp Guy



      Apprentice

    • All that is needed
      Re: size of folder
      « Reply #3 on: June 09, 2007, 05:18:11 PM »
      You are welcome (and please don't cuss).

      Quick question, were you trying to view the sizes of multiple folders at the same time instead of one at a time?

      contrex

      • Guest
      Re: size of folder
      « Reply #4 on: June 09, 2007, 05:19:18 PM »
      In Windows Explorer, if no file is highlighted, the size of the folder is shown below in the status bar




      boo

        Topic Starter


        Apprentice
      • Thanked: 1
        • Yes
        • Yes
      • Computer: Specs
      • Experience: Experienced
      • OS: Windows 8
      Re: size of folder
      « Reply #5 on: June 09, 2007, 05:50:42 PM »
      what i was trying to do was looking at alot of folders and trying to see which ones were empty so i could delete them (music folders)

      Comp Guy



        Apprentice

      • All that is needed
        Re: size of folder
        « Reply #6 on: June 09, 2007, 06:21:30 PM »
        I do not currently know of a way to do that, but will let you know if I find one.

        Dark Blade

        • Forum Gaming Master


        • Adviser

          Thanked: 24
          • Yes
        • Experience: Experienced
        • OS: Windows XP
        Re: size of folder
        « Reply #7 on: June 09, 2007, 06:31:02 PM »
        what i was trying to do was looking at alot of folders and trying to see which ones were empty so i could delete them (music folders)
        I've got something which I think would delete every empty file/folder under Document and Settings (just did that so it wouldn't affect system folders/files).

        Code: [Select]
        for /r %%i in ('dir "C:\Docume~1\*" /s /b') do (
        if %~zi EQU 0 del %%i)

        contrex

        • Guest
        Re: size of folder
        « Reply #8 on: June 09, 2007, 11:13:25 PM »
        There is an app called Tree Size Pro which can show size of folders

        reaper_tbs



          Apprentice

          • Yes
          • Google
        • Certifications: List
        • Computer: Specs
        • Experience: Experienced
        • OS: Other
        Re: size of folder
        « Reply #9 on: June 09, 2007, 11:15:07 PM »
        or you could just select one or more folders and go to properties... less efficient, but it works for me   :-X
        Computer Hope

        If I don't reply, I'm probably out returning videotapes.

        ghostdog74



          Specialist

          Thanked: 27
          Re: size of folder
          « Reply #10 on: June 10, 2007, 02:26:20 AM »
          what i was trying to do was looking at alot of folders and trying to see which ones were empty so i could delete them (music folders)
          a vbscript to show empty folders
          Code: [Select]
          Set objFSO = CreateObject("Scripting.FilesyStemObject")
          myFolder="c:\temp"
          Set objFolder = objFSO.GetFolder(myFolder)
          GoSubFolders objFolder

          Sub GoSubFolders (objDIR)
            If objDIR <> "\System Volume Information" Then
             MainSub objDIR
             For Each eFolder in objDIR.SubFolders
                GoSubFolders eFolder
             Next
            End If 
          End Sub

          Sub MainSub (objDIR)
             WScript.Echo "Number of files in",objDIR , "is",objDIR.Files.Count   
             If objDIR.Files.Count = 0 Then
                WScript.Echo "0 files folder found:",objDIR
             End If     
          End Sub

          boo

            Topic Starter


            Apprentice
          • Thanked: 1
            • Yes
            • Yes
          • Computer: Specs
          • Experience: Experienced
          • OS: Windows 8
          Re: size of folder
          « Reply #11 on: June 10, 2007, 05:52:50 AM »
          ummmm
          ok i may sound like a retard but how do i use that code?
          i appreciate the effort u have put into this although im sure im not the only perosn with this problem

          ghostdog74



            Specialist

            Thanked: 27
            Re: size of folder
            « Reply #12 on: June 10, 2007, 07:20:47 AM »
            change "myFolder" in the code to where you want to start scanning
            save the code as say, findZeroFiles.vbs or something else
            on the command prompt, type
            c:\> cscript findZeroFiles.vbs

            boo

              Topic Starter


              Apprentice
            • Thanked: 1
              • Yes
              • Yes
            • Computer: Specs
            • Experience: Experienced
            • OS: Windows 8
            Re: size of folder
            « Reply #13 on: June 10, 2007, 07:45:02 AM »
            thanx
            ill try that

            boo

              Topic Starter


              Apprentice
            • Thanked: 1
              • Yes
              • Yes
            • Computer: Specs
            • Experience: Experienced
            • OS: Windows 8
            Re: size of folder
            « Reply #14 on: June 10, 2007, 07:54:14 AM »
            quote from CMD when i input 'csript zerofile.vbs'

            "input error: cannot find the script file (C:\ etc)"
            ummmm?

            boo

              Topic Starter


              Apprentice
            • Thanked: 1
              • Yes
              • Yes
            • Computer: Specs
            • Experience: Experienced
            • OS: Windows 8
            Re: size of folder
            « Reply #15 on: June 10, 2007, 07:54:42 AM »
            obiously after i saved it as zerofile.vbs

            ghostdog74



              Specialist

              Thanked: 27
              Re: size of folder
              « Reply #16 on: June 10, 2007, 08:34:31 AM »
              why is there a space in c:\ etc? is that where you want to start scanning for folders? don't put a space , put it like this c:\etc

              boo

                Topic Starter


                Apprentice
              • Thanked: 1
                • Yes
                • Yes
              • Computer: Specs
              • Experience: Experienced
              • OS: Windows 8
              Re: size of folder
              « Reply #17 on: June 10, 2007, 09:40:47 AM »
              i mean thats where the file zerofile.vbs is