Use this tag to mark questions related to file sizes on any file system.

learn more… | top users | synonyms

0
votes
0answers
20 views

calculated app size not showing correct in iOS

My app has some content dumping in document folder periodically. And i have used the below code to calculate my total app consumed memory size. But i see its different from what i see from ...
0
votes
1answer
19 views

Find files with certain filesize in Linux

i need to find all index.php files with file size of 1.905 bytes. I have over 700+ websites and 2/5 of them are hacked and have index.php with this filesize. Please help me!!!
0
votes
0answers
22 views

I have a CSV file with more than 20,000 columns that I would like to view in a spreadheet. HowTo

My CSV file is not that large (10 to 20 mb), but the number of columns is extraordinary (17,000 and counting). I'm manipulating the file with Perl, and that seems to be suiting my purposes just fine. ...
1
vote
1answer
36 views

Is there any maximum size for KML files to open in Google Earth/

I have created a kml file with 15.439 contour and each one has 360 coordinates. The file size is 369Mb. When I try to open the file, Google Earth shows a message saying: "Google Earth encountered a ...
0
votes
0answers
17 views

Hyphenator.js or Hypher?

I would like to implement client-side hyphenation via JavaScript on some large texts on my site. (I know about CSS3 hyphenation and will use it instead when available -- but it's usually not ...
1
vote
1answer
19 views

Php is messing up my upload size

This I believe is a PHP issue, but please feel free to chime in. I am trying to upload a file, I have set the max size to 10240 (10mb's). I am trying to upload a file, (in Ubuntu 13.04) from the ...
1
vote
1answer
37 views

Best way to get filesize of large files(>2GB) in php?

i am working with large files in php, and need a RELIABLE way to get the file size of larger files over 4GB, but php runs into problems with files over 2gb... so far i have only seen solutions ...
0
votes
0answers
28 views

Excluding iPhone 3Gs via UIRequiredDeviceCapabilities - Smart Idea?

I have already found a way to exclude the iPhone 3Gs from the supported devices for my app via UIRequiredDeviceCapabilities, but I am wondering if I should pull that trick and would like to know your ...
2
votes
1answer
61 views

Predicting file size after write.csv

Is there a method in R that (perhaps approximately) estimates the file size of a write.csv file (or other export commands, such as dev.copy2pdf)?
0
votes
1answer
35 views

Django, returning file attachment as HttpResponse, can I get file size?

I am returning an Excel .XLS file from a weboage, like: xls_response = HttpResponse(mimetype='application/vnd.ms-excel') xls_response['Content-Disposition'] = 'attachment; filename=funfile.xls' . . ...
0
votes
1answer
40 views

C# Delete From Beginning of Text File Without Reading Entire File

I have a logging application that works great, but I want to apply the ability to maintain the size of the log file - stop it from getting too large. Ideally, I want to check the size of the file ...
2
votes
1answer
27 views

How can I get the total size of my attachment

I am having trouble in getting the mail attachment size. So not able to provide proper argument to progressbar (via publishProgress). Any help will be appreciated. Below is the code I am using: ...
0
votes
2answers
69 views

How to quickly create large files in C?

I am doing research on file system performance, and I am stumped on how to create a very large file very quickly in C. Basically, I am trying to re-create a file system's folders and files by taking ...
0
votes
2answers
66 views

File.length() returns 0 at first, but later returns the correct value

I am trying to get the file size of an image I've downloaded and saved using this AsyncTask protected Bitmap doInBackground(String... params) { String urldisplay = params[0]; ...
0
votes
0answers
34 views

Changing Max Upload Size php

I am trying to change the max upload size on my server to allow larger files to be uploaded. I have gone into the php.ini file, and have changed the following settings: upload_max_filesize = 20M ...
0
votes
1answer
32 views

Get size of Wordpress RSS feed?

The scenario: I have a flash website (here) that imports some of its content from a wordpress site (here) via the Wordpress's RSS (I added a plugin to include pages in the RSS). This isn't a ...
0
votes
1answer
38 views

Define upper limit of file size

I am developing an Web based compiler.For this I need to save the Input that must be passed to a source code in a file and then save the output genereated in a file.I want to limit the file size of ...
0
votes
0answers
48 views

create self encrypted php file

A couple of years ago I stumbled with a "self encrypted php file". For what I can remember, its code was encoded several times in base 64 and was constantly verifying its own file size. This was ...
0
votes
0answers
64 views

JAX-RS send file as @FormParam

I have a problem with uploading "large" files to my restfull webservice. By "large" files I mean files larger than 3MB. On the client side I use Files api from HTML5 standard and jQuery to post data ...
0
votes
2answers
86 views

How to find the size of data (samples) of the .wav file?

I have to normalize .wav audio file. Succeeded to get metadata (the first 44 bytes) from the file (ChunkID, ChunkSize, Format, fmt and so on.) so I can find out how many channels are there ...
0
votes
0answers
90 views

check file size in IE without using active x object

Below link provide how to implement file size checking for all browsers, but the problem is, I want to implement a file size check for IE browser without using active x object implementation. Is there ...
1
vote
0answers
55 views

DataInputStream available() behaviour for reading files bigger than Integer.MAX_VALUE bytes

I have a binary file in custom format than I have written using DataOutputStream. The simplified format of the data in the file is: IntCharIntCharIntChar...IntChar I am using DataInputStream to read ...
0
votes
1answer
52 views

Making Overall App Size Smaller

I just recently talked to an app marketing agency and they are strongly recommending that I find a way to take my 153MB app and somehow get it under the 50MB mark that is the current standard for ...
0
votes
3answers
149 views

C# FTP Size command doesn't work on all FTP servers

I am having some trouble with a very simple snippet of code: private long getFTPLogLength() { long size; FtpWebRequest ftpRequest = (FtpWebRequest)FtpWebRequest.Create(new ...
0
votes
0answers
22 views

Apache doesn't show filesize/duration during downloading .dmg in browser?

I have a .dmg on my website for a Mac Software, but when i try to download this (even in different browsers), it doesn't show me the duration or the filesize. Could this be something i need to ...
0
votes
0answers
45 views

Get FileSize of image loaded in HTML Canvas

Is there a way to a simple way to get the image filesize that is active in my canvas using JavaScript? I need to manage images a user uploads so that it does not exceed a specific total file size of ...
0
votes
0answers
20 views

filesize() [function.filesize]: stat failed *SOLVED* [duplicate]

I am getting the following error when trying to echo the HTML contents of a file inside a wordpress plugin folder. Warning: filesize() [function.filesize]: stat failed for ...
0
votes
1answer
69 views

Restricting apk size - Even with large number of resources?

I've used the following as my research : http://developer.android.com/guide/practices/screens_support.html Too large APK due to multiple densities and screens sizes? How to reduce App (.apk) Size ...
2
votes
2answers
92 views

Pretty file size in Ruby?

I'm trying to make a method that converts an integer that represents bytes to a string with a 'prettied up' format. Here's my half-working attempt: class Integer def to_filesize { 'B' ...
0
votes
2answers
83 views

Figuring out the size of file C++

I'm trying to figure out the size of a file using the code provided and pass the result into my file object. It will only pass in the file size if it's of a certain extension, this function works ...
4
votes
1answer
91 views

Is there a max javascript filesize, what can browsers handle?

Engineering incredibly large webapps, do we have any top or limit or best practice for filesizes in these large projects? The biggest I have seen is probably twitter/gmail which had around 1mb ...
-1
votes
1answer
41 views

I need get date and filesize [closed]

I have website like FTP and I need get date and size from file. Look at: http://configs.eu/_enemyterritory/configdownload.php?file=mAus.rar For name Im using: <? echo "".$_GET["file"].""; ?> ...
0
votes
1answer
140 views

How to retrieve the size of a file in a document library in sharepoint through webservices using Java

I'm writting an application in Java which has to report all available files in a document library on SharePoint 2007. The application uses the java sharepoint library from korecky (Project Home). ...
0
votes
0answers
30 views

Finding size of remote file [duplicate]

Is there a way to know size of a remote file in php without download that? i know there is filesize() for local files. but is there a way to know size of a remote file without download that file ...
0
votes
1answer
111 views

Python - Get total amount of bytes used by files [closed]

I'm trying to get the total amount of bytes used by all files. What I've got so far is the following. def getSize(self): totalsize = 0 size = 0 for root, dirs, files in ...
0
votes
1answer
46 views

Sum file sizes that are older than 7 years under a folder in Windows Server 2008

I need to find the total size of all files that are older than 7 years, under a folder that has thousands of files. Is there any quick way to do this?
0
votes
1answer
24 views

Error by read the file size PHP

I want to get the file size of an attachment of my wordpress post. But when I run the site, I get this error ... Can anyone help me? "Warning: filesize(): stat failed for ...
1
vote
1answer
147 views

How to reduce repository size without loosing history of source code files?

The git repository of my current project, containing source code and image files, measures around 1.2 gigabytes. But the the actual files of all branches are only around 205 megabytes in size. I am a ...
0
votes
1answer
69 views

Jqgrid filesize formatter for Mb/kb format

Is there a formatter Option for showing Kb or Mb file size in JQ Grid ? jQuery().ready(function ($) { var colModel = [ { name: 'Size', index: 'Size', sortable: ...
0
votes
2answers
802 views

Validate file upload with javascript/jquery [duplicate]

Ok, this is frustrating. I have searched a lot on google on how to validate selected file (to upload) extension and size but no success on the file size matter. I have an image upload control in ...
0
votes
1answer
83 views

Get a filename bat

I am new to BAT writing. I am trying to write a batch file which will check to see if a file is above or below a certain size and then send an email accordingly. I have written something that can do ...
0
votes
1answer
38 views

Flash imported images have incorrect file sizes

I've just exported a JPG image from Photoshop using the "Save for Web" feature. I got the image down to 58kb. When I import it into Flash and go into it's Properties to change the compression, the ...
1
vote
1answer
94 views

Readable file sizes with the Twig templating system

I'm wondering if there's a built in way to output readable file sizes with the Twig templating system. Say I have something like this in my template: <p>This limit is currently set to {{ ...
0
votes
2answers
245 views

human readable file size

function humanFileSize($size) { if ($size >= 1073741824) { $fileSize = round($size / 1024 / 1024 / 1024,1) . 'GB'; } elseif ($size >= 1048576) { $fileSize = round($size / ...
0
votes
0answers
45 views

post_max_filesize in php.ini more than 1G

I have funny problrm in php.ini file. when I enter post_max_filesize 1G everything work fine, but when I enter 2G post_max_filesize is -1G or -2. when I increase post_max_filesize value thsi realy ...
3
votes
1answer
114 views

What's the fastest way to get size of an online file [ http ] [duplicate]

I'm working on a YouTube Downloader, which gets sizes of all qualities available but usually that takes a very long time and sometimes it just goes like a lightning ! I wrote this Function and it's ...
0
votes
1answer
64 views

What does AppStore App file size mean?

It says that the limit of download from the AppStore over-the-air is only 50 MB. But we have this app for some reason it exceeds 50+ MB. The previous version is only 49.1 MB then we just added about ...
-1
votes
1answer
93 views

Batch_ Compare two similarly named files and delete the larger, multiple times

I'm looking for a nifty script that will compare file sizes when I feed it multiple files, and then delete the larger file. I have a set of identical image files in JPG and PNG formats, and I only ...
0
votes
3answers
780 views

HDFS block size Vs actual file size

I know that HDFS stores data using the regular linux file system in the data nodes. My HDFS block size is 128 MB. Lets say that I have 10 GB of disk space in my hadoop cluster that means, HDFS ...
0
votes
0answers
69 views

HDFS small files Vs big files: weird behavior

I have some millions of records and I have two separate copies of the records (same content) stored in HDFS directories morefiles and lessfiles. Directory morefiles has 2400 files to store the content ...

1 2 3 4 5 9