Ask a Question related to ASP.NET General, Design and Development.
-
Arjen #1
Format filesize in kB or MB
Hello,
When I have read a file with x.xxx.xxx.xxx bytes it is sometimes handy to
show it in an diverent format than bytes.
Is there a handy way to do this?
Or is there a function for it?
When it is a big file I want to see a MB size and when it is a lower file
size then I want to see a kB size for example.
Thanks!
Arjen Guest
-
Filesize problem.
I am trying to determine if a file contains information. I thought the easiest way to do this would be to check the files size. So I wrote the... -
PDF filesize in Illustrator CS
Hello all- I've just downloaded the trial version of Illustrator CS, and am currently using version 8. My problem/question is this- using the save... -
filesize in .exe
Hello everyone, I have a problem, I am working on a director project which grew over time. therefore I have an exported exe file that is filling up... -
Filesize = 2GB SCO 5.0.7?
Hi, Just wanna check out with u guys, is SCO 5.0.7 single file size still same as SCO 5.0.5 not more than 2GB? -- Posted via... -
vml and filesize
Thinking of buying/using Publisher - and I see that 2003 version is coming. However, I am very turned off by the VML and the filesize - 2 meg for a... -
eruess #2
Re: Format filesize in kB or MB
It shouldn't be too much trouble to do it by hand, right? Like what about
this psuedo code:
select case filesize
case >= 1,000,000,000,000
(display) filesize \ 1,000,000,000,000 & " TB?"
case >= 1,000,000,000
(display) filesize \ 1,000,000,000 & " GB"
case >= 1,000,000
(display) filesize \ 1,000,000 & " MB"
case >= 1,000
(display) filesize \ 1,000 & " KB"
case else
(display) filesize & " bytes"
end select
"Arjen" <boah123@hotmail.com> wrote in message
news:bh0qmo$jt9$1@news2.tilbu1.nb.home.nl...> Hello,
>
> When I have read a file with x.xxx.xxx.xxx bytes it is sometimes handy to
> show it in an diverent format than bytes.
>
> Is there a handy way to do this?
> Or is there a function for it?
>
> When it is a big file I want to see a MB size and when it is a lower file
> size then I want to see a kB size for example.
>
> Thanks!
>
>
eruess Guest
-
Jerry III #3
Re: Format filesize in kB or MB
Actually Windows API provides such a function,
StrFormatByteSizeA/StrFormatByteSizeW. If you really wanted to you could use
that (through a COM object?).
Jerry
"Michal A. Valasek" <news@altaircom.net> wrote in message
news:OJ9UISeXDHA.2524@TK2MSFTNGP09.phx.gbl...about> Hello,
>
> | It shouldn't be too much trouble to do it by hand, right? Like whatbut> | this psuedo code:
>
> there is no specific function to do that. Go the way "eruess" provided,> keep in mind, that kB, MB etc. is binary, not decimal, and use
> multiplications of 1024, not 1000.
>
> --
> Michal A. Valasek, Altair Communications, [url]http://www.altaircom.net[/url]
> Please do not reply to this e-mail, for contact see [url]http://www.rider.cz[/url]
>
>
Jerry III Guest



Reply With Quote

