Tagged Questions
The file-storage tag has no wiki summary.
8
votes
3answers
266 views
Write-once read-often distributed file storage for .NET?
I have a C#/.NET application that needs to store variable-sized binary blobs (10KB - 100MB) in a central repository. MogileFS meets my needs exactly (write-once, highly available, transparent ...
8
votes
3answers
240 views
performance implications of storing 600,000+ images in the same folder (NTFS)
I need to store about 600,000 images on a web server that uses NTFS. Am I better off storing images in 20,000-image chunks in subfolders? (Windows Server 2008)
I'm concerned about incurring operating ...
5
votes
4answers
689 views
Using hash functions for file storage?
A common technique for storing a lot of files/blobs in a filesystem is to use a hash function to determine the filepath; eg hash(identifier) -> "o238455789" -> o23/8455/789
(there is often a ...
4
votes
2answers
298 views
How to give users a file storage limit?
I'm working on a web application right now using Rails and wanted to see if anyone knew of a good way to keep track of file storage limits? We want to give users a specific amount of room that they ...
3
votes
1answer
311 views
Best folder structure for storing image in filesystem?
I am in the process of creating a website for a small company, with a catalog page which shows categories and listing of all the products.
I have images for each product, stored in one folder per ...
3
votes
4answers
176 views
How to efficiently store hundrets of thousands of documents?
I'm working on a system that will need to store a lot of documents (PDFs, Word files etc.) I'm using Solr/Lucene to search for revelant information extracted from those documents but I also need a ...
3
votes
2answers
1k views
How to copy InMemoryUploadedFile object to disk
I am trying to catch a file sent with form and perform some operations on it before it will be saved. So I need to create a copy of this file in temp directory, but I don't know how to reach it. ...
3
votes
5answers
439 views
How to store millions of pictures about 2k each in size
We're creating an ASP.Net MVC site that will need to store 1 million+ pictures, all around 2k-5k in size. From previous ressearch, it looks like a file server is probably better than a db (feel free ...
2
votes
2answers
59 views
Is Cassandra good for storing files?
I'm developing a php platform that will make huge use of images, documents and any file format that will come in my mind so i was wondering if Cassandra is a good choice for my needs.
If not, can you ...
2
votes
1answer
60 views
Storing a file in RAM with bash - possible?
I'm going to encrypt my harddrive using LUKS with Arch Linux; normally you use either a keyfile or a passphrase to unlock encrypted volumes, however I want to require both.
# If keyfile exists, ...
2
votes
2answers
581 views
Heroku File Storage
Heroku only has 100MB of file storage, right? I'm making a low-level rails app and I really like Heroku, but if my app allows each user to upload one picture, I may run out of space quickly...is there ...
2
votes
1answer
308 views
When using SQL Compact on Windows Mobile, do you store the sdf file on a storage card?
Having had some Sql Compact db corruption issues in the past and gone through the article on these, I got the idea that storing the database sdf file on a storage card significantly increases the risk ...
2
votes
2answers
3k views
How to store a file on a server(web container) through a Java EE web application?
I have developed a Java EE web application. This application allows a user to upload a file with the help of a browser. Once the user has uploaded his file, this application first stores the uploaded ...
1
vote
1answer
85 views
file storage + permissions : mongodb vs filesystem approach
The java web app I'm developing allows users to upload files (pictures and documents) to their profiles and define access rules for those files (define which of the other users are able to view / ...
1
vote
2answers
85 views
Django: Securing / encrypting stored files
In a Django project, I want to keep user uploaded files secure on the server. Should this be done at the OS level (we are using ubuntu) or at the application level?
Encrypting at the application ...
1
vote
3answers
324 views
Store user's images in a web application
I have a web application currently being developed in JSP/Servlets.
The application allows users to upload image files for each user account.
What is the best way to store the images?
Please ...
1
vote
2answers
94 views
*unusual* approach to memory saving? [closed]
I was reading in a textbook on c++ about IOstreams, and I came across this:
Whenever you want to store information
on the computer for longer than the
running time of a program, the usual
...
1
vote
3answers
355 views
Guidance on Android file storage
I need to write an Android app that would download sounds from the internet for further use.
Where should i store these sounds? Is Sqlite an option? And what's the best way to load and play these ...
1
vote
2answers
37 views
Why sort automatically-generated files based on hash?
It's a pattern I've seen on websites that allow users to upload content like images before.
For example, why http://upload.wikimedia.org/wikipedia/commons/7/70/Example.png instead of just something ...
1
vote
3answers
102 views
General question: Filesystem or database?
I want to create a small document management system. There are several users who store their files. Each file which is uploaded contains info about which user uploaded it and the document content ...
1
vote
4answers
1k views
SHA-1 hash for storing Files
After reading this, it sounds like a great idea to store files using the SHA-1 for the directory.
I have no idea what this means however, all I know is that SHA-1 and MD5 are hashing algorithms. If ...
0
votes
0answers
35 views
How to store a capatious object between ASP.NET's PostBacks
At my asp.net-application user can upload Excel-file. Using that I must give him some options (like choose sheet, columns and etc.).
So my object ExcelReader contains states of that options as well ...
0
votes
3answers
79 views
Pro & Cons of storing files(pictures) in a SQL Server for a website
I'm creating an Asp.Net MVC website.
I've in the past, for heavy application, multiple layer application, used the database to store files.
But now I'm questioning myself, is this a good idea for a ...
0
votes
1answer
42 views
What architecture would you use to store 10 billion MIME messages and make it deletable and full text searchable incl. attachments
I would like to use components that are free for commercial use.
I looked at a Lucene and MongoDB combo but wonder if there are better approaches, ideally a single system.
0
votes
2answers
83 views
Coldfusion - allow user to choose where to save generated csv file
Thanks to your tips and Ben Nadel's QueryToCSV solution, I'm now able to generate CSV files from my queries. However, I'd like to allow the user to choose where to save the generated file. The ...
0
votes
2answers
85 views
File storage library
I want to develop an open source library, for a fast efficient file storage (under one large file, and index file) like NFileStorage. why i want to do this ?
A. under my line of work something like ...
0
votes
2answers
132 views
Storing objects in iOS for later use
My app is pulling in JSON data from our web service. In all instances up til now, the information would be retained in memory or just refreshed on the fly with no need to retain anything locally other ...
0
votes
1answer
27 views
Basic File storage
In order to prevent file storage problems like when two people upload a file that might have the same file name...
Is it better to get each user a separate folder to prevent issues or is better to ...
0
votes
2answers
97 views
Single Instance File Storage with JAVA
I was storing some files based on a checksum but I found a flaw that 2 checksums can be identical sometimes.
I always try looking for API instead of reinventing the wheel, but I can't find anything.
...
0
votes
1answer
25 views
What are the disadvantages of storing images on a file system?
I have a few questions about storing files on the operating system. These may or may not be valid worries, but I don't want to go on without knowing.
What will happen when the file it is stored in ...
0
votes
1answer
55 views
Possible to fetch data from remote folder on IIS server?
So far I have worked with remote Linux servers where I fetched data via PHP layer. Is it possible to do the same with a remote storage server that runs IIS 7.5 server?
I basically need to list files ...
0
votes
0answers
90 views
rebuilding a filesystems directory tree in a sql/nosql database inlcudeing millions of folders in 5 levels and storing their files
Draft:
1. Table ""files""
Path (=KEY) | new simple location | (later: is flaged|tags|comments..)
.......
/aaa/all.zip |"fileserver/11942.zip"| .............
...
0
votes
1answer
37 views
Add Tags to files (videos mostly)
I wanted some guidance here:
My program screen records videos then I want to store them with tags so like stackoverflow for example I can find specific categories.
I been thinking of making xml files ...
0
votes
1answer
164 views
Where does SVN store reposatory files?
What is the default location for reposatory files in SVN? And how does it store them? (plain files,some sort of database)?
Thanks
0
votes
2answers
65 views
Storing files in directories in an online file manager
I have a site that allows people to upload files to their account, and they're displayed in a list. Files for all users are stored on different servers, and they move around based on how popular they ...
0
votes
1answer
68 views
Multiplatform single-file storage
I need a way to store several images in one/two (some projects seems to us an index too) for both .NET and java. The file-format needs to be easy to decompress (I'm planing to do so on android).
And ...
0
votes
1answer
188 views
I plan to use jsfiddle for html demos on my site, but how can I store my actual code?
My site will feature dozens and dozens of front end live demos ( html pages with cross browser bugs ), but instead of just throwing it on jsfiddle.net and linking to demos from articles I would ...
0
votes
2answers
104 views
Storing .dll files in SQL Server 2005
Where can I find information on storing ".dll" files in SQL Server 2005? Is it the same as storing Binary data?
0
votes
2answers
280 views
Storing files on the Cloud or the FileSystem?
Simple question, doesn't seem to have been directly asked yet.
What are the benefits to storing files (images/videos/documents/etc) on Amazon S3-and-related vs. on the File System your app is ...
-2
votes
5answers
61 views
How to make a name of file in such way 31f3207.jpeg [closed]
Possible Duplicate:
Unique key generation
How to automaticly make a new name of file when you upload it to server?
I upload a picture file with < input type="file" / >. File has name ...