home *** CD-ROM | disk | FTP | other *** search
- '******************************CLUSTER.BAS*******************************
- '
- 'I'm Getting a 535 MB Hard drive. Want to know how to use FDISK.EXE to
- 'partition it most effectively. Most files are NOT 8K (8192 bytes) long
- 'and only one file fits per cluster. Using 8K Clusters on a 100 MB drive
- 'gave me 12 MB (sic) of "Slack Space"; Using MS-DOS 5.0 (or greater)
- 'with FDISK.EXE and reformating the drive gave me 2 K Clusters and regained
- '6 Megabytes of disk space... Worth doing.... If you are the fearless type
- 'and have really and truly backed up your hard drive to TWO tapes and run
- 'the tape compare on BOTH of them.
- '
- 'John De Palma on CompuServe 76076,571
- '11/12/93
- DECLARE SUB SetBorder (ColrByte%)
- DEFLNG A-Z
- COLOR 15, 1
- CLS
- KiloByte = 2 ^ 10
- MegaByte = 2 ^ 20
- EightKCluster = 2 ^ 13
- FourKCluster = 2 ^ 12
- TwoKCluster = 2 ^ 11
- CONST row% = 2
- NumberPerMega = MegaByte / EightKCluster
- CALL SetBorder(4)
- text$ = "Cluster Size vs Hard Drive Size"
- LOCATE row%, 41 - LEN(text$) / 2
- COLOR 11, 0: PRINT text$
- text$ = "-ALMOST- Every Thing you Need to Know about Clusters..."
- LOCATE row% + 1, 41 - LEN(text$) / 2
- COLOR 11, 2: PRINT text$
- text$ = "Or... How many Hard Drive Partitions to Make with 2K Clusters"
- COLOR 11, 3: LOCATE row% + 2, 41 - LEN(text$) / 2
- PRINT text$
-
- COLOR 15, 1
- LOCATE row% + 4, 10
- PRINT "One Kilobyte equals: "; TAB(55); KiloByte; " bytes"
- LOCATE row% + 5, 10
- PRINT "One Megabyte equals: "; TAB(49);
- PRINT USING "###,###,###"; MegaByte;
- LOCATE row% + 7, 10
- PRINT "Eight K Cluster equals: "; TAB(55); EightKCluster; " bytes"
- LOCATE row% + 8, 10
- PRINT "Four K Cluster equals: "; TAB(55); FourKCluster
- LOCATE row% + 9, 10
- PRINT "Two K Cluster equals: "; TAB(55); TwoKCluster
- LOCATE row% + 11, 10
- PRINT "Eight K Clusters per MB is: "; TAB(56); MegaByte / EightKCluster; " Number"
- LOCATE row% + 12, 10
- PRINT "Four K Clusters per MB is: "; TAB(56); MegaByte / FourKCluster
- LOCATE row% + 13, 10
- PRINT "Two K Clusters per MB is: "; TAB(56); MegaByte / TwoKCluster
-
- 'use integer divisor to round down
-
- LOCATE row% + 15, 10
- PRINT "Max Hard disk size with 2 MB clusters is: "; TAB(56); : COLOR 11 + 16, 1: PRINT 65518 \ (MegaByte / TwoKCluster); : COLOR 15, 1: PRINT " MB"
- COLOR 15, 1
- LOCATE row% + 16, 10
- PRINT "Max Hard disk size with 4 MB clusters is: "; TAB(56); 65518 \ (MegaByte / FourKCluster); " MB"
- LOCATE row% + 17, 10
- PRINT "Max Hard disk size with 8 MB clusters is: "; TAB(56); 65518 \ (MegaByte / EightKCluster); " MB"
-
- text$ = "MAXIMUM Number of Clusters = 65,518"
- LOCATE row% + 20, 41 - LEN(text$) / 2
- COLOR 11, 0: PRINT text$
- text$ = "Press any key to END..."
- LOCATE row% + 21, 41 - LEN(text$) / 2
- COLOR 15, 4: PRINT text$
- WHILE INKEY$ <> "": WEND 'clear keyboard
- DO
- kee$ = INKEY$
- LOOP UNTIL LEN(kee$) 'pause
-
-