Tagged Questions
-1
votes
0answers
30 views
Storing an object to a file in Windows 8 apps
(Windows 8 Apps,C#)
Hi,
I have a number of Images(.jpg) and Audio-files(.mp3) in each object. I would like to store these objects in separate files and retrieve the content later. I searched for ...
1
vote
2answers
49 views
Overwrite file in my app
When I start the application I will invoke a web service and save a file returned by the service in my app. For offline purposes i want to have a file in my app, in case the web service is down.
My ...
-1
votes
1answer
43 views
Handling millions of photos on web server
Im designing a social network. I have many questions regarding the design methodology and database design but according to the stackoverflow FAQ its better to make the question specified and focused. ...
0
votes
0answers
63 views
Can't record video using default camera launched from application
I'm trying to record a video by calling the default video camera and then save it to a specified folder. The camera launches normally, but when I hit "record" button the screen just freezes. When I ...
0
votes
1answer
32 views
Is there some “on removal” action in Hibernate triggered by e.g. orphan removal or its equivalent?
I have model SomeFileModel that contains reference to a file stored on disk. I would like to save that file together with an entity and delete them both at once. While the former isn't difficult, the ...
1
vote
1answer
282 views
Reading Image from internal memory android gives null pointer exception
I am quite new to android. I want to save image to internal memory and later retrieve the image from internal memory and load it to image view. I have successfully stored the image in internal memory ...
1
vote
2answers
227 views
I want the benefits of GridFS but mainly storing files under 16MB
I need to create a storage system for files that will mostly be under 16MB but I want the benefits of GridFS like versioning, custom metadata, easy backup (with mongodump), etc. I'd say maybe 10% of ...
0
votes
1answer
32 views
How filesystem knows where the end of files are (on a binary standpoint)
How does a file system know where the end of file begins and the next starts. Is there metadata that shows how big the file is? or is there a byte that represents an EOF? I did some hexdumps however ...
0
votes
1answer
351 views
azure website - file system storage
I am hosting a website on Azure. I have a simple php file uploaded there to display some data that gets posted (via http) to my php. When I see my dashboard I see that the file system storage keeps ...
1
vote
2answers
213 views
Will writing million times to a file, spoil my harddisk?
I have a IO intensive simulation program, that logs the simulation trace / data to a file at every iterations. As the simulation runs for more than millions of iterations or so and logs the data to a ...
0
votes
0answers
83 views
My app can't read its self-made HTML files on internal storage
As the question's title says, I have an app that generates HTML files on Android internal storage.
Here's how I did it:
Reading the file
if (thereIsSomethingToShow)
{
...
0
votes
0answers
41 views
What will be the file storing structure on aws s3 server? [closed]
I have a folder structure on aws s3. All my file are stored in sub-folder and sub-folder is inside main folder. I want to arrange all sub-folders and files inside sub-folder by uploaded date and time. ...
0
votes
1answer
68 views
Upload Servlet with custom file keys
I have built a Server that you can upload files to and download, using Eclipse, servlet and jsp, it's all very new to me. (more info).
Currently the upload system works with the file's name. I want ...
1
vote
0answers
36 views
multiuser wcf file storage
I thought over creation file storage with use WCF.I seach in Internet and find many examples and write his service:
namespace CTFileStorage
{
[ServiceContract(Namespace = ...
0
votes
2answers
445 views
Error downloading file on internal storage android
As I was thinking that downloading is pretty straightforward I am encountering a error when I try to download an xml file from the internet and save it on the internal memory. I use the internal ...
0
votes
2answers
37 views
PHP Locate a stored file by a part of its name
friends.
I need to locate a file, stored in my site while using php and finding it with a part of its name. I cant locate it by its entire name because the php file cannot know its extension. It might ...
0
votes
0answers
43 views
Storing massive temporary files
This is a practical question, I am working with quite large website which is going to have a big traffic, and this website is based on music. I guess you could say it's somewhat similar to soundcloud.
...
1
vote
0answers
118 views
Symfony 2.0 with Memcache to store the cache files
Im using symfony 2.0 and I want to use memcached instead to store the files on app/cache
Is there any config.yml instructions to do this?
Thank you very much for yours answers.
1
vote
1answer
864 views
Internal Storage for Android; creating files
Im trying to just create basic files internally for another app. So i wrote a basic app to work out the kinks then was going to add it to the other app. Here is the log from the cat
10-09 ...
0
votes
1answer
91 views
Good Filesystems and/or Archive Systems for Many Small Files
I am looking to store many (500 million - 900 million) small (2kB-9kB) files.
Most general purpose filesystems seem unfit for this as they are either unable to handle the sheer number of files, slow ...
2
votes
1answer
1k views
Access files on internal and external storage
I have an Xperia Neo V that does not have any internal storage - only an SD card as external storage, while the Galaxy S3 has both internal and external storage.
When using this function ...
1
vote
1answer
87 views
Local file storage
From one project to run into difficulties in the organization of static storage for very large numbers of files. For images, creating a table Image and have a record on which to calculate the path of ...
1
vote
1answer
45 views
Do database systems contain/store picures, sounds and files, or just a reference of them?
The other day I was watching a tutorial video on youtube about db, and in the introduction the guy said "db stores files such as pictures, sound files ... " It seems that there's a big misconception ...
2
votes
0answers
126 views
java - copy files from mobile device
I'd been trying to make this little desktop java application to backup some predefined files from an android tablet/smartphone to my computer.
Up to now I'd been using mainly the File.getRoots() ...
0
votes
0answers
135 views
PHP Web Drive like Google Drive? [closed]
With PHP, i want to verify whether we can make a fully geared Web Drive App like Google Drive or not. Is any best example product already out there with PHP?
0
votes
2answers
162 views
How do I save data permanently so I can access it later in Android?
Whenever I press the back button my app doesn't call onSaveInstanceState() and I can't save data. I'm trying to make a scheduler app and I need to save schedules already set even after I press the ...
0
votes
0answers
90 views
Android: regarding Fileinput and output stream
I am trying to make an app where i input date(with a date picker),time(with a timer picker),and some typing (with an editable text), than i want it to be saved on the phone as one type of unit (each ...
0
votes
2answers
295 views
How to get files into library directory for iphone device testing
I have tested my app on the ios simulator and using the following code:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString ...
0
votes
0answers
109 views
Get access to audio file inside Android project
I have read in some questions how to get access to internal files in the Android project, but they are given with InputStream format. I just only want to have access to the file folder to pass it to a ...
0
votes
1answer
621 views
Ruby on Rails PaperClip - How to store files in another location besides S3 or the public folder
I'm experimenting with PaperClip and like it and it looks to be a good solution for our project. However, we'd like to store the uploaded files in another location on the server (ubuntu) besides the ...
0
votes
0answers
40 views
Store files in server [duplicate]
Possible Duplicate:
Thousands of images, how should I organize the directory structure? (linux)
i'm building a custom e-commerce, and one of it's functionalityes is to store user files on ...
2
votes
1answer
97 views
where created files are stored physically in android?
I am creating file using following code
OutputStreamWriter out = new OutputStreamWriter(openFileOutput("try.txt",0));
// write the contents on mySettings to the file
...
-1
votes
1answer
41 views
How to compress files before they are saved?
I want to do a free photo sharing website and wanted to know what is the best way to lower storage costs? Obviously, there is no clear answer, i am aware of that much. The cheapest i know is ...
2
votes
2answers
85 views
How do I store structures that are read from a file in C?
I came up with a project to work on learning C and I have kind of hit a wall.
The project is simply a card game where the player has two sets of cards, one set is a deck of a set size and the other is ...
0
votes
0answers
206 views
Android: Where to put Image files to access them later and add to SQLite
I have been jumping around the various posts on this site related to this question, but none of them really answer exactly what I am looking for. So if you find or know of a post that I may have ...
0
votes
1answer
46 views
best way to store todo lists, reminders and their linked data on disk
I am doing a side-project on a productivity tool that has the following features:
to-do lists, appointments (as to-do), goals (that are broken down into action steps -> to-do), recurring to-do's ...
0
votes
2answers
70 views
Storing language and styles. What would be best? Files or DB ( i18N )
I'm starting a Incident Tracking System for IT, and its likely my first PHP project.
I've been designing it in my mind based on software I've seen like vBulletin, and I'd like it to have i18n and ...
0
votes
1answer
562 views
Make directories in files internal storage
How do i make directories in internal storage?
I tried this:
File file = getFilesDir();
this makes me goes to folder "/data/data/com.mypackages/files/"
Then i want to make a folder again in that ...
2
votes
3answers
1k views
iOS File Storage: Solution for Not Backing Up
Like many developers, my iOS app was just rejected for having downloadable content that was being backed up to iCloud. I've searched for a clear answer to this question but have not been able to get ...
1
vote
1answer
605 views
13 million files gridfs mongo
We have to store approximately 13 million files and perform some standard operations on the files. We are using Windows. The first question is can we store it on the filesystem? The total file size ...
0
votes
3answers
162 views
Read multiple txt files and sort them out android
I got a little problem.
I got a map (on android phone) called "Save", in that folder I got several .txt files.
I know how to enter the folder, and I can read 1 txt file (hardcoded) but I want it to ...
0
votes
0answers
100 views
how to set the file saving path for actual android device. i can access by emulator but not actual device
this is the code i refer to. but it works by using emulator. when i install the code to android device. it doesn't work. anyone can help me? Thanks
...
0
votes
2answers
277 views
Scalable File Storage
I'm looking for a way to store files, namely images(maybe videos) in a scalable file system. I know I can store it in a cloud, but I am looking for something similar to MongoDB GridFS, but purely for ...
4
votes
2answers
310 views
How to create a virtual storage space in C++?
I'm using a third party SDK, and one of the method goes as following:
void ReadData(string filePath);
As you might have guessed, it requires a filename for the method.
I do not wish having to ...
0
votes
1answer
58 views
What are drawbacks of storing text data in one large ASCII text file as compared to splitting it up to multiple files?
What are three main drawbacks of storing text data in one large ASCII text file as compared to splitting it up to multiple files? If I do split up, could you suggest a heuristic to choose a threshold ...
1
vote
0answers
80 views
Ios details of storage files
I'm looking for a function that allows me to list the contents of files in my iphone, I'll explain, I'm trying to do so he knows the number of images, music files, applications, etc. etc. stored in ...
0
votes
0answers
524 views
BlackBerry Curve not enough storage exception
I have an application that downloads a video file that is roughly 6mb
I am trying to run this application on a Blackberry Curve 9360, which has 32mb of "media" storage
Sometimes this application ...
1
vote
1answer
5k views
How to download & store files in android in internal storage and access it?
I would like to download files from the web to the internal storage of the android device so that it will not be available for the user manipulation and how to access the stored file.For instance a ...
0
votes
1answer
325 views
Saving a picture into memory
I need to use the device camera to take a picture, save it into its memory and get the uri so I can email it afterwards.
I'm using Android 3.2 on a device with no memory card (just 11 gigs of ...
2
votes
1answer
2k views
Android create file in internal storage with world readable right
I develop an application for Android.
I store files in internal storage with method :
getDir("myfolder", Context.MODE_WORLD_READABLE)
Then, I create a file :
File myFile = new File("myFile");
...

