Tagged Questions

3
votes
8answers
601 views

Whats the actual file size?

(Only programmers would know) In Windows XP, under File Properties, Whats the actual file size?.. Size or Size-on-disk? I'm looking for the exact size of the file, in bytes.. (1,024 bytes NOT 1,000 …
2
votes
3answers
149 views

File size restriction or limitation in C#

I want to generate XML file from one object (Contains nested collection) with large amount of data. but there is a limitation with XML that it can't exceed 50MB. Are there any good way to do this? …
2
votes
1answer
207 views

Why does the Flex compiler generate varying file sizes on successive compilations of the exact same source code?

I'm building a SWF using the command line compiler mxmlc.exe. The compiler writes the output file size as part of it's stdout. If I run the compiler multiple times in succession without changing the …
2
votes
3answers
475 views

Programatically determining file “size on disk” in advance

I need to know how big a given in-memory buffer will be as an on-disk (usb stick) file before I write it. I know that unless the size falls on the block size boundary, its likely to get rounded up, …
2
votes
5answers
2k views

H.264 file size for 1 hr of HD video

I'm looking for an order of magnitude estimate for expected on-disk file size for 1 hour of H.264 encoded HD video transcoded from HDV (HD on a MiniDV tape). I want to archive approximately 100 hours …
1
vote
4answers
120 views

total size of group of files selected with ‘find’

For instance, I have a large filesystem that is filling up faster than I expected. So I look for what's being added: find /rapidly_shrinking_drive/ -type f -mtime -1 -ls | less And I find, well, …
1
vote
3answers
879 views

python file size

I am trying to split up a large xml file into smaller chunks. I write to the output file and then check its size to see if its passed a threshold, but I dont think the getsize() method is working as …
0
votes
1answer
15 views

changing a Flex movie to use Runtime shared libraries and losing text in charts

Hi, I'm creating a small size Flex movies which contains two line charts, at the moment the size of the release build swf is 343KB, which is too large for our needs. I've tried changing the loading …
0
votes
1answer
44 views

How could file size change without ‘date modified’ getting changed? [closed]

I was puzzled seeing this. My vmware virtual machine was running and I was monitoring the size of the virtual disk file. The size of the file kept increasing but 'last modified' date remained …
0
votes
1answer
128 views

Comparing local and remote file size via Net::FTP in Rails

I wrote a sync script to upload a local file if it does not exist on the ftp server. I want to make it more robust by ensuring that the file size on each match. This will allow the script to correct …