A file system is a way of organizing data on a computer system. Typically a file system consists of files, folders (normally a special kind of file) and an API that can be used for interacting with files.

learn more… | top users | synonyms (1)

0
votes
1answer
32 views

C++ : loop on all files of a folder (and its subdfolders) : simplest solution?

What's the shortest solution to make a loop on all .mp3 files of a folder (and its subdfolders) with C++, OS=Windows? If possible, I'd like to avoid 3rd party things, such as boost, but if not ...
0
votes
1answer
17 views

Does the “do not back up” attribute work on data in 'Library/Caches'

Apple's data storage guidelines state the following: 2) Data that can be downloaded again or regenerated should be stored in the /Library/Caches directory. ...and (emphasis mine): 4) Use ...
0
votes
0answers
22 views
+50

Rails implementation of a database-based file system

Because "file system" and "rails" are such common topics both together and separate I fail to find any Ruby on Rails open source app that implements a file system in the database. I would like to use ...
0
votes
0answers
4 views

Union or Merge Two Files' Blocks in Ext4

Suppose I have two files X and Y, they could be binary files. I want to combine these two files such that: Disk blocks of Y get appended to that of X. By append I mean, blocks of Y should appear ...
0
votes
0answers
22 views

Log-structured file-systems vs. in-memory databases

Log-structured file-systems never really entered mainstream. However, it occurred to me that in-memory databases (e.g., Cassandra) borrow many concepts from them. It seems to me like Cassandra ...
0
votes
1answer
30 views

How to copy files to remote computer using Bash script?

I have a script that needs to copy a file to a remote computer: cp -R "${DEST_FOLDER}" "${SRC_FOLDER}" How can I do it when the remote computer requires user and password for access? How do I ...
3
votes
2answers
64 views

Best Practices to Create and Download a huge ZIP (from several BLOBs) in a WebApp

I will need to perform a massive download of files from my Web Application. It is obviously expected to be a long-running action (it'll be used once-per-year[-per-customer]), so the time is not a ...
9
votes
1answer
102 views

Monitoring the filesystem with Haskell

I'm using the FSNotify package to watch my filesystem for changes to markdown files, so I can run them through Pandoc automatically. However, I'm having trouble getting the manager to exit nicely. As ...
-1
votes
0answers
42 views

Mocking a file system [closed]

I have to demonstrate a Proof of concept for a system which can handle around 100 TB of data. The constraint is that my lab does not have such a big hard drive. So for the POC I am going to have to ...
-1
votes
2answers
19 views

linux filesystem - what constitutes an inode? [closed]

Sorry if this is a stupid question, I am confused by the concept of an inode. Say I have a file.dat nested in a multi-level directory structure like this: folder_1 -> folder_2-> ...
-1
votes
0answers
14 views

jffs2 filesystem corruption randomly [closed]

I have an 2 MB spi nor flash. It has jffs2 filesystem on it with size of 1 MB. Here is the steps for deploying jffs2 flash erase -j /dev/mtd10 0 0 mount -t jffs2 /dev/mtdblock10 ...
0
votes
0answers
17 views

Accessing images saved by Chrome

I'm writing a folder watcher, which I have had working on some devices, but not all devices seem to save to the same location. What I'm trying to do is allow users to save an image from a web app, ...
0
votes
0answers
27 views

Why filesystem gets destroyed on power off [closed]

I have a raspberry pi. When I plug off the power a few times, the raspberry pi can't reboot because the filesystem is destroyed. I want to understand what happens, that the filesystem gets destroyed ...
-2
votes
0answers
16 views

Windows mount NFS can't find symlinks in the folder [closed]

I've built a nfs server on one centOS6.x server.There is a folder /local/test I write it to the /etc/exports.It works when i mount it on my windows xp with Microsoft UnixService 3.5. Under the ...
2
votes
0answers
34 views

How performance of reads/writes to regular file varies when linux kernel memory load becomes high?

It seems that writes/reads to regular files can't not be made non-blocking. I found the following references for support: from The Linux Programming Interface: A Linux and UNIX System Programming ...
3
votes
1answer
30 views

How to ensure that the filesystem and database are not accessed during unit tests in NUnit?

I'm looking for a way to cause unit tests to fail if they access the filesystem or database using NUnit and C#. I would preferably like to be able to set something up in a unit testing base class to ...
0
votes
0answers
11 views

Which blocks of a file system(FAT32) are allocated for a specific file?

I am trying to implement a tool that finds outs which blocks of the disk were allocated for a file. Disk file system is FAT32 and is size about 100MB. I researched about open system call but I cannot ...
0
votes
0answers
10 views

Can I Read a key of Registry in DriverEntry?

I am writing a file system filter driver to forbid invalid file accessing. As a junior, I use the example provided by MS which is called Sfilter. Although it's a little old, while well basic. My ...
0
votes
1answer
15 views

DB vs. filesystems - for non-image files and endianess

I've read the many discussions about Databases vs. file systems for storing files. Most of these discussions talk about images and media files. My question is: 1) Do the same arguments apply to ...
-5
votes
0answers
50 views

What should we do to protect our game models files? [closed]

When you finish and sell a game...Somebody who buys the game can't steal your *.obj files,or any model data files?What should we do to protect them?
1
vote
2answers
39 views

How to use CreateFile API function for network path?

I have come across the CreateFile API for C drive. It is working fine. But when I try to use a network share path it throws an error. private void GetRootHandle() { string vol = ...
1
vote
1answer
26 views

Insert at the beginning of a file with Node.js

Is there way to append to the beginning of a file in node (maybe to insert). I was looking around her http://nodejs.org/api/fs.html but didn't see anything, I know that append brings adds to the end ...
0
votes
0answers
7 views

Are there any userspace programs to interpret btrfs snapshot diffs?

I am currently looking into backups and want to speed up the process while staying file-based (as opposed to filesystem-based). I want to use duplicity as the main backup component. The idea would be ...
0
votes
1answer
15 views

Does the type of deploy affect the application in any way?

My team and I are trying to automatize some of our proccesses and it includes programmatically remote deployment. A colleague of mine asked me a question about JBoss' deployment: Does the type of ...
0
votes
2answers
33 views

How to recursively delete files without blocking the disk [closed]

I have a folder with a lot [sic] files in a fairly deep directory structure. When I do a rm -R (or a rsync or something like this), crawling through the tree, the disk will be under heavy load (munin ...
0
votes
1answer
45 views

Storing Images: MongoDb vs File System

I need to store a large number of images (from around 10,000 images per day) With an average size of around 1 to 10 MB for each image. I can store these images in MongoDB using the GridFS Library or ...
-1
votes
0answers
27 views

Equivalent to Apache Commons VFS for C++

I am looking for a C++ open source library that exposes a file system access API but enables different storage implementations, such the local filesystem, an FTP server, a WebDAV server, etc. ...
0
votes
0answers
26 views

How do hackers modify your files on your server? [closed]

I am very green to the hack thingie. :) My site was hacked. They added Russian porn links to the bottom of the pages. I checked all the files comparing with the previous backups and found out some of ...
0
votes
0answers
5 views

Information about FileSystems.getDefault() and path.getFileSystem()

Basically I would like to know if the following lines: UserPrincipal owner1 = path1.getFileSystem(); FileSystem fs = FileSystems.getDefault(); are totally equal. I will express it better. I would ...
1
vote
1answer
12 views

EXT3 file operations

I am trying to follow how Linux deals with EXT3 files. I am looking at fs/ext3/file.c where there are file operations that deal with the files are present: const struct file_operations ...
0
votes
0answers
18 views

Which approach is better when handling hundreds of directories with thousands of files in each of them on Linux?

I have webserver which stores thousands of photos. Right now I have /photo directory in which I have one hundred directories named like /photos/10, /photos/11, /photos/12, .... /photos/99 Right now I ...
0
votes
0answers
10 views

File extraction tool

I am looking for a tool which can extract files from SVN work-space, criteria for extraction will be user who committed the file and date range. Though tortoise SVN client provides this in log but its ...
0
votes
1answer
13 views

Terminal vs Eclipse PosixFilePermissions

By running the same command from the Eclipse and from the command line I get 2 different results: With Eclipse everything works fine, however with the command line I get the following error message: ...
1
vote
0answers
29 views

plone: read-only filesystem - can't edit contents

due to a recent lack of space on the virtual machine (solved already) where I run Plone, the file system got locked by the OS (Suse Linux Enterprise) to read only mode. Since then I can't edit any ...
-2
votes
0answers
32 views

PGP, disk encryption schemes [closed]

I am studying various disk encryption schemes (such as PGP, MS Bit Locker, BestCrypt and TrueCrypt) on my Windows OS. I am interested to know "How an encrypted partition/disk/file with the ...
0
votes
3answers
42 views

Delete file on server

I have a file path in the format file://SERVERNAME/FOLDER$/FOLDER/image.jpg. I call System.IO.File.Delete(Server.MapPath(file://SERVERNAME/FOLDER$/FOLDER/image.jpg)) to delete the file, but i get the ...
0
votes
1answer
63 views

Why System.getProperty(“user.name”); does not work from command line?

The following line of code works fine with Eclipse Path file = Paths.get(System.getProperty("user.home"),"Desktop","Peppe.txt"); however when I try to run it from a terminal it gives me back this ...
1
vote
1answer
15 views

Ubuntu 11.10 file system does not implement creationTime?

From the following quote taken from the javadoc. FileTime creationTime() Returns the creation time. The creation time is the time that the file was created. If the file system implementation ...
0
votes
1answer
42 views

Some or all identity references could not be translated

I want to set some access rules to a file. Now when i set the rule, the variable name contains the right username (like: domain\user). string name = new ...
0
votes
0answers
16 views

Dynamically allocating limited disk space per user on NTFS

I'm designing a module that needs to allocate dynamic, limited disk space per user. Based on a large NTFS filesystem, I want each user to tell me how much space he want's extended to him, and then ...
0
votes
1answer
47 views

Attempting to create a FAT file system in C++?

I'm attempting to create a FAT file system I understand the basic principle of how its supposed to set up and I'm using a struct like this for each FAT entry struct FATEntry { char name[20]; ...
-6
votes
1answer
40 views

Why are there no available downloads for pyfakefs? [closed]

pyfakefs mocks Python's filesystem modules, useful for testing. It seems to be quite mature, being "used in over 900 Google Python tests". However, there doesn't seem to be a convenient way to ...
-1
votes
3answers
27 views

Why do I get a ClassCastException when using Long instead of Integer?

Basically trying out the following snippet I get a ClassCastException: public static void main (String []args) { Path path = Paths.get((System.getProperty("user.home")), ...
2
votes
0answers
21 views

Writing files locally vs. remote file system?

My question is about remote files systems on Windows. Suppose you have workstation X which has access to files systems on the network - say - \\ServerY\MYDir\. Imagine a scenario that you have two ...
0
votes
0answers
23 views

This method does not give me back rootfs?

So basically I would like to know why the following snippet does not give me back the rootfs partition. FileSystem fs = FileSystems.getDefault(); for (FileStore store : fs.getFileStores()) { ...
0
votes
1answer
16 views

Multiple Questions about EXT2 file system

I am reading about EXT2 file system, and have a lot of questions. Primarily relying on the following resources: http://e2fsprogs.sourceforge.net/ext2intro.html ...
0
votes
1answer
26 views

What happens when you rm a file?

I'm curious about what happens at a deeper level when you rm a file on a UNIX-like system, especially as related to how it's possible to restore deleted files. Could someone describe how rm works at ...
0
votes
1answer
26 views

how would i move a folder or the contents from one place to another Via code in Xcode?

Im trying to make a mac app that copies and pastes a folder to another location but i can find a tutorial on how i go along and make an app for the mac what its per pose is A app that makes it easy to ...
0
votes
0answers
21 views

Filepaths in Wampserver and PHP

Trying to use Filesystem functions in a Wampserver environment and cannot read or open files. Ran these: echo dirname('c:/wamp/localhost/www/test/test.php'); $basename = ...
0
votes
2answers
44 views

read data from ext4 filesystem directly from the raw partition without mounting the file system

Is it possible to add data of fixed size to an ext4 image such that its available at the last block of the partition (or say last 100KB)? I want to be able to to add data to the ext4 image such that I ...

1 2 3 4 5 68