Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
5answers
10k views

C#: File-size format provider

Is there any easy way to create a class that uses IFormatProvider that writes out a user-friendly file-size? public static string GetFileSizeString(string filePath) { FileInfo info = new ...
24
votes
9answers
22k views

java get file size efficiently

While googling, I see that using java.io.File.length() can be slow. FileChannel has a size() method that is available as well. Is there an efficient way in java to get the file size?
13
votes
4answers
5k views

C# Get file size on disk

var length = new System.IO.FileInfo(path).Length; This gives the logical size of the file, not the size on the disk. I wish to get the size on the disk in C# (preferably without interop) of a file ...
9
votes
4answers
373 views

Reducing repository size in Mercurial

As my team works on a given project with the source in a Mercurial repository, the repository is obviously growing in size. As such, cloning a repository over the network becomes slower and slower. ...
9
votes
8answers
845 views

PHP x86 How to get filesize of >2GB file without external program?

I need to get file size of file over 2GB size. (testing on 4.6GB file) It there any way to do this without external program? Current status: filesize(), stat() and fseek() fails fread() and feof() ...
9
votes
6answers
11k views

Find file size with jQuery

I was wondering if there was a way to use jQuery to find out the file size for a PDF that i'm linking to a webpage. I want to make it so that on hovering over the download link, a modal box pops up ...
8
votes
10answers
9k views

How do you determine the size of a file in C?

How can I figure out the size of a file, in bytes? #include <stdio.h> unsigned int fsize(char* file){ //what goes here? }
6
votes
5answers
86 views

Get Large File Size in C

Before anyone complains of "duplicate", i've been checking SO quite thoroughly, but there seem to be no clean answer yet, although the question looks quite simple. I'm looking for a portable C code, ...
6
votes
2answers
118 views

Trimming my Java Project

I am currently working on a project that utilizes the jfreechart library. I am currently using the jar file for this library by adding it in my build path. However I do not need the entire ...
6
votes
7answers
291 views

What is the lightest way to make a huge chess-like grid?

I'm working on a browser-game and I can't help but wonder about what's the lightest way to make the grid/board on which the game takes place. Right now, as a mere sample, I'll show you this: -link ...
6
votes
10answers
753 views

Any suggestions for shrinking a PDF file?

We've got a .net 2.0 web system that dynamically builds pdf files. Some of these files can get pretty large - 12MB+. While processing time isn't a factor, really, the size of the files to be ...
6
votes
5answers
1k views

How to create a file of size more than 2GB in Linux/Unix?

I have this home work where I have to transfer a very big file from one source to multiple machines using bittorrent kinda of algorithm. Initially I am cutting the files in to chunks and I transfer ...
5
votes
3answers
122 views

Is there a Java enum for filesize units that's equivalent to java.util.concurrent.TimeUnit?

I've always liked the readability of assignments that used TimeUnit like so: long timePeriodInMillis = TimeUnit.MINUTES.toMillis( 53 ); Over something like: long timePeriodInMillis = 53 * 60 * ...
5
votes
2answers
320 views

file input size issue in safari for multiple file selection

I am experiencing inconsistencies with regard to multiple file upload in Safari 5.1 on Windows Vista (haven't tried other platforms). The input element has the multiple flag to allow selection of ...
5
votes
3answers
228 views

PHP filesize reporting old size

The following code is part of a PHP web-service I've written. It takes some uploaded Base64 data, decodes it, and appends it to a file. This all works fine. The problem is that when I read the file ...
5
votes
7answers
1k views

smallest filesize for transparent single pixel image

I'm looking for the smallest (in terms of filesize) transparent 1 pixel image. Currently I have a gif of 49 bytes which seems to be the most popular. But I remember many years ago having one which ...
5
votes
3answers
2k views

Using C++ filestreams (fstream), how can you determine the size of a file?

I'm sure I've just missed this in the manual, but how do you determine the size of a file (in bytes) using C++'s istream class from the fstream header?
5
votes
3answers
3k views

PHP include(): File size & performance

An inexperienced PHP question: I've got a PHP script file that I need to include on different pages lots of times in lots of places. I have the option of either breaking the included file down into ...
5
votes
7answers
2k views

How to achieve smaller size of the executable?

Very recently I have come back to Delphi after a long pause and written a rather straightforward utility app my client requested to support an older release... I know these days the size does not ...
5
votes
5answers
16k views

How can I check the size of a file in a Windows batch script?

I want to have a batch file which checks what the filesize is of a file. If it is bigger than %somany% kbytes, it should redirect with GOTO to somewhere else. Example: [check for filesize] IF ...
5
votes
5answers
511 views

How to retrieve the size of a file before uploading it?

I have an file input tag in my web app. I'd like to check that the file isn't too big before sending it to the server. Of course, I still have validation server side. Is there any way to do this ...
5
votes
7answers
2k views

How do I get the size of a file in megabytes using Perl?

I want to get the size of a file on disk in megabytes. Using the -s operator gives me the size in bytes, but I'm going to assume that then diving this by a magic number is a bad idea: my $size_in_mb ...
4
votes
1answer
59 views

PHP file size is unchanged after appending

I am facing a problem with PHP file I/O. $file = fopen("/tmp/test.txt", "w"); fwrite($file,"hi there\n"); fclose($file); echo filesize("/tmp/test.txt")."\n"; # displays 9 $file = ...
4
votes
2answers
98 views

Minimizing SVG file size [closed]

I am saving map images created in Adobe Illustrator as .svg documents. What are some tips and tricks for making the file size as small as possible?
4
votes
2answers
316 views

PHP filesize over 4Gb

I'm running a Synology NAS Server, and I'm trying to use PHP to get the filesize of files. I'm trying to find a function that will successfully calculate the filesize of files over 4Gb. ...
4
votes
2answers
269 views

Size of .apk is increasing with the increase with target devices (LDPI,MDPI,HDPI,X-Large Screens)

i have a developed an app targeting MDPI devices initially which is having many images and the size of the app is nearly 16MB. Now i need to target all the other device Screens.For this the images ...
4
votes
3answers
457 views

How to reduce SWF filesize by optimizing the code?

Considering we have already done the following actions: Flex Framework as RSL Compiling with debug=false Loading most images at runtime Drawing other simple images with flash draw features Reducing ...
4
votes
6answers
358 views

Compiled C++ executables HUGE?

After programming for a while in C, I decided to finally start to learn C++. This is sort of bothering me, as the standard 'hello world' in C is usually ~16KB, including all of the crud your compiler ...
4
votes
1answer
259 views

sparse file usage in python

I'm creating sparse files in python as follows: >>> f = open('testfile', 'ab') >>> f.truncate(1024000) >>> f.close() when the file is done, it takes up 0 disk space, but ...
4
votes
6answers
1k views

Portable way to get file size in C/C++

I need to determin the byte size of a file. The coding language is C++ and the code should work with Linux, windows and any other operating system. This implies using standard C or C++ ...
4
votes
1answer
3k views

PHP filesize() works on all but one file, gives stat failed error

I'm writing a PHP page that generates a podcast feed by scraping an existing HTML page. Everything works great, but one of my mp3 files gives a "filesize(): stat failed" error. As best as I can tell, ...
4
votes
2answers
1k views

what happens when cookies file exceeds maximum size?

What really happens when cookies file exceeds maximum size?
4
votes
5answers
521 views

Lots of small files or a couple huge ones?

In terms of performance and efficiency, is it better to use lots of small files (by lots I mean as much as a few million) or a couple (ten or so) huge (several gigabyte) files? Let's just say I'm ...
4
votes
6answers
1k views

What are some good guidelines for keeping iPhone app file-size under 10.0MB?

I want to keep my app under 10.0MB for easy downloading in both cellular and Wifi network environments. In your experience have you come across any good ways for keeping your apps slim? If so please ...
4
votes
3answers
2k views

Any way to analyze the size of a SWF built in Flex?

I have a Flex application that seems larger than it should be. There is a lot of code in it, but not a lot of assets and it just seems large, but I'm not sure how to go about figuring out where the ...
4
votes
12answers
11k views

Is there an upper limit on .txt file size?

As a Christmas gift I have written a small program in Java to calculate primes. My intention was to leave it on all night, calculating the next prime and writing it to a .txt file. In the morning I ...
3
votes
1answer
49 views

Sum file sizes that contain K, M, G, T

If (in zsh) I have an array that contains something like this: echo ${fsizes[@]} 9.5M 100M 5G 15G 1.2T is there an easy way to get the sum of these in an output of choice (i.e. bytes, megabytes, ...
3
votes
1answer
69 views

Android application size

When i export my apk is 600 KB in size. With installed on the android phone the Application size is 2.23MB why this happens? This change in size occurs when i include asmack library but i can't ...
3
votes
2answers
316 views

image file size checking using c#

i'm trying to load image from local disk, and it's working. But my problem is that i'd like to check if image size is valid or not before loading , and if not - then MessageBox.Show("No image!"); ...
3
votes
2answers
62 views

Javascript file sizes, does this make a difference?

new to web design here and I have simple question. I am creating a rotating header for a website and I have a couple of options. I can use a script that I created that's only 2kb. But the ...
3
votes
3answers
829 views

Iphone App - Largest File size you can download without using WiFi?

If I try to download an app that is lets say 100 MB it will not allow me to do it on my phone. Or if I am not connected to a WiFi. Does anyone know where they cut that off? Like at 30 MB or ...
3
votes
4answers
782 views

php get the KB size of an image

i've been googleing but all i get is getimagesize and filesize. getimagesize dosent get the KB size just width and height which is not what im looking for. filesize give me the message Warning: ...
3
votes
6answers
257 views

Uploading images with PHP and hitting the script memory limit

I am trying to upload a JPG image using a PHP script, but the image is keeps causing my script to time out and die giving this error: Fatal error: Allowed memory size of 33554432 bytes exhausted ...
3
votes
3answers
115 views

How can I check that I downloaded the entire file in Perl?

Does the test of the file-size make sense here? I tried to cut the connection while downloading, but it looks like the size-test is never reached. #!/usr/bin/env perl use warnings; use strict; use ...
3
votes
5answers
731 views

How to get a file's size which is greater than 4 Gb?

I made a simple function, which get's a file's size. int file_size( char * filename ) { int size; struct stat st; stat( filename, &st ); size = st.st_size; return size; ...
3
votes
2answers
573 views

get the filesize of very large .gz file on a 64bit platform

According to the specifiction of gz the filesize is saved in the last 4bytes of a .gz file. I have created 2 files with dd if=/dev/urandom of=500M bs=1024 count=500000 dd if=/dev/urandom of=5G ...
3
votes
1answer
330 views

Preloader size guidelines

I'm working on a high-end flash site (AS3) with lots of video, hi-res graphics, and sound effects; needless to say, the initial preloader's got a lot of work to do (just to get the site to a point ...
3
votes
2answers
1k views

Delphi Function to Display Number of Bytes as Windows Does

This is a simple one (I think). Is there a system built in function, or a function that someone has created that can be called from Delphi, that will display a number of bytes (e.g. a filesize), the ...
3
votes
7answers
3k views

Make javascript file to min version [closed]

Possible Duplicates: How to organize minification and packaging of css and js files to speed up website? What do you use to minimize and compress JavaScript libraries? Hi there Do you know ...
3
votes
4answers
406 views

Added code, swf size got … smaller?

... I'm working on a couple of theories, but I'm interested to hear other opinions. This has been verified on three different machines, two windows the other linux. The compiler used is flexbuild ...

1 2 3 4 5 6