Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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? }
7
votes
5answers
12k 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 ...
4
votes
2answers
2k views

Increase the size of sql compact 3.5 .sdf file using C#

I'm using Sql Compact3.5 as my DB with C# .NET what is the maximum size of sdf that I can give??? Is there any way to programatically increase the maximum size of the sdf file??? if so how???
4
votes
8answers
2k 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 ...
3
votes
5answers
134 views

Script to find all similarly named files (differing only by case?)

I having been working on an SVN repo using command line only. I now have to bring in users that require a GUI to interface with the repo, however this is presenting a number of problems with similarly ...
3
votes
4answers
266 views

How can I find the file size only using the the windows command shell?

I'm trying to write a script that checks if the size of a file is greater than 0 and if so, prints "greater". I looked at this question and got some good ideas. I tried to implement what the second ...
3
votes
2answers
529 views

Why are FAT32 disks limited to 4gb files?

I'm not looking for a workaround; I'd like an explanation. Most of the links I found through Google just tell me that the file limit is 4gb, but not why. I am aware of the explanation by Wikipedia: ...
2
votes
1answer
52 views

find the APK size of installed applications

I am trying to calculate apk file size of the installed applications. Here is the code public class PackageTabActivity extends ListActivity{ private static final String APP_NAME = "app_name"; ...
2
votes
1answer
309 views

Better way to convert file sizes in Python

I am using a library that reads a file and returns its size in bytes. This file size is then displayed to the end user; to make it easier for them to understand it, I am explicitly converting the ...
2
votes
4answers
160 views

Storing File Sizes in a Database

I am currently working on a system that involves storing multiple studies and details of their contents (A study can typically contain 1 < X < ~2000 images). My colleagues and I were discussing ...
2
votes
1answer
685 views

Smaller APK size with large assets?

I am creating a simple android app to view a comic book. The pages are large(0.5-1 mb each), high quality .png's and I am loading them into a webview to make use of the built in zoom controls. So far ...
2
votes
1answer
422 views

DOMPDF: files with 0 bytes and text/plain mime-type

I'm using Kohana 3 and pdfview/DOMPDF to generate pdf files but they are generated with 0 bytes and text/plain mime-type. Controller: public function action_pdf() { if(isset($_POST['dados'])) { ...
2
votes
3answers
547 views

How do I get the file size of a large (> 4 GB) file?

How can I get the file size of a file in C when the file size is greater than 4gb? ftell returns a 4 byte signed long, limiting it to two bytes. stat has a variable of type off_t which is also 4 ...
2
votes
1answer
452 views

File size and mime-type before upload

I've scavenged on every single topic on this forum to try and find an answer before I posted this. Most people say you should simply use SWFUpload, some others mention Activex, and it keeps going. I ...
2
votes
3answers
413 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
5answers
1k 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, ...
2
votes
1answer
456 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
4answers
1k 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
7answers
19k 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
3answers
123 views

How to check .xls file size before uploading in ASP.NET 4?

Following is a part of my ASP.NET code: <asp:FileUpload ID="fuUploader" runat="server" /> <br /> <asp:Button ID="btnSubmit" runat="server" Text="Submit" onclick="btnSubmit_Click" /> ...
1
vote
2answers
76 views

Is there a way to get the size of a file in .NET using a static method?

I know the normal way of getting the size of a file would be to use a FileInfo instance: using System.IO; class SizeGetter { public static long GetFileSize ( string filename ) { FileInfo fi = ...
1
vote
2answers
77 views

total size and number of files by type in C#

I'm a Java vet but new to .NET. I need to gather a total size and number of files by type and a grand total in C#. Is there a better way than a recursive search? Also, I need to find multiple types. ...
1
vote
6answers
347 views

how to find out the size of file and directory in java without creating the object?

First please dont overlook because you might think it as common question, this is not. I know how to find out size of file and directory using file.length and Apache FileUtils.sizeOfDirectory. My ...
1
vote
3answers
184 views

How do I validate the size of a file using JavaScript?

when upload button clicked on page... want to check filesize selected in fileupload control and stop postback of upload button if file size exceeds... what are the ways to do this using ...
0
votes
0answers
13 views

How to find running application size programatically in blackberry?

i want to find the size of running application of blackberry by code.I checked the how to find application size in blackberry by code? link but i am not getting answer. Please suggest me solution. ...
0
votes
2answers
18 views

Why does the file size of a png24-sprite increase when adding transparent white-space?

I am creating a png24 as sprite for css background images. Due to padding issues I have to keep a certain amount of space between the icons in the sprite. When doing so the file size of the png ...
0
votes
3answers
54 views

How to tell how far along an InputStream a loop is in Java

I'm trying to make a downloader so I can automatically update my program. The following is my code so far: public void applyUpdate(final CharSequence ver) { java.io.InputStream is; ...
0
votes
0answers
61 views

Can I increase maxRequestLength of ASP.NET request for MVC Controller Action with additional parameters?

Can I increase maxRequestLength of ASP.NET request for MVC Controller Action with additional parameters? I have a UploadController with a ActionResult looking somthing like this. [HttpPost] ...
0
votes
0answers
41 views

Get the Size of a folder in Cocoa

This seems to be the age old question, what is the "proper" (Preferably cocoa) way to get the size of a folder? I've tried various methods including NSFileManager's itemAttributes but its usually off ...
0
votes
1answer
22 views

Does the size of a log file affect the processing time of loging with the Logger class in Ruby?

I'm using the Logger class in Ruby's standard library. http://rubylearning.com/satishtalim/ruby_logging.html I rotate a log file weekly. If the size of a log file become larger, will the processing ...
0
votes
1answer
126 views

javascript or jquery fileSize

I was looking all over the web how i can get the file size on the client side so i found a few examples the first example was $(this)[0].files[0].fileSize but unfortunately it does not working in ...
0
votes
2answers
95 views

Help with size of folder path

i am trying to write an application to calculate the size of a set of shares using the following code. The issue however is that as the search gets deep in to the shares, the file path variable in the ...
0
votes
4answers
128 views

Can we reduce an image file size with php?

Can we reduce an image file size with PHP if it exceed the the limit set by upload_max_filesize? For instance, the upload_max_filesize at my serve is only 3MB, but the image file size for uploading ...
0
votes
1answer
88 views

How to make swf file smaller?

I'm trying to capture a video demo of my iPhone app so I can post it on Youtube. I'm using Jing application (http://www.techsmith.com/jing/) for Mac, and was able to capture a video of the app. ...
0
votes
1answer
757 views

Finding file's size

In my iPhone app I am using the following code to find a file's size. Even though the file exists, I am seeing zero for the size. Can anyone help me? Thanks in advance. NSArray *paths = ...
0
votes
1answer
99 views

How does Firefox(or dld manager) determine the size of a file being downloaded?

Actually what I want to do is to FOOL the browser by saying that the file to be downloaded is 1KB, no matter what the file size is but it should download the entire file!
0
votes
1answer
106 views

Visual Studio scratch disk behavior

I don't know if this feature exists, but I'd like a way to control Visual Studio 2010's scratch disk behavior (other than completely turning off intellisense). Right now it creates a massive .sdf ...
0
votes
1answer
124 views

Getting the size of a file in Java [closed]

Possible Duplicate: Size of folder or file I'm making a basic file browser and want to get the size of each file in a folder. How might I do this? I already have the name and type of each ...
0
votes
1answer
79 views

MediaPlayer on Android

I want to know the total length in kb of mp3 file .how to do this in android Thanks in advance...
0
votes
1answer
216 views

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

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 of ...
0
votes
4answers
260 views

How to sniff the number of records in a binary file before reading into an array in the C programming language?

How do I tell in a better way how many records there are in a binary file before I open up the file and read the records into an array for example? MyFile = fopen("DATA.dat", "rb"); i = 0; while ...
0
votes
1answer
154 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
435 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 ...
-1
votes
4answers
54 views

how to get size of file in mb?

I have a file on server and it is a zip file. How to check if file size is biger than 27 mb? File file = new File("U:\intranet_root\intranet\R1112B2.zip"); if(file> 27){ //do something } ...
-2
votes
1answer
77 views

ArrayList and HashMap confusion

public class PackageTabActivity extends ListActivity{ HashMap<String,Object> hm ; ArrayList<HashMap<String,Object>> applistwithicon ; private static final String APP_NAME = ...