0
votes
1answer
72 views

C# Simple File Versioning

Is there a .NET supported way of programmatically versioning basic text, excel, word, etc. files in the file system? More specifically, I am attempting to add a file version attribute to a Crystal ...
0
votes
1answer
30 views

Ruby: Reading Unsaved Text File

I have a RFID scanner program in Windows writing its results to a sample text file. However the program does NOT save the file. Is there any way in Ruby that I can read in these changes made to the ...
1
vote
2answers
79 views

Walking file tree in Java 6

I'm trying to find a way to locate a certain file in the computer's directory in java 6. More specifically, my program launches the program Pymol by locating pymol.exe on the hard drive and executing ...
1
vote
2answers
76 views

How to resize a file, “trimming” its beginning?

I am implementing a file-based queue of serialized objects, using C#. Push() will serialize an object as binary and append it to the end of the file. Pop() should deserialize an object from the ...
0
votes
2answers
166 views

php move/copy image files to new directory/folder structure in linux

I have a php/mysql website where users create listings and upload multiple images (3 image sizes for each). I made the mistake of storing the images in folders as below : ...
2
votes
1answer
67 views

Notifications for file system events (Jailbreak devices)

I need to be able to receive notifications when there is a new file system event. For instance when a new picture is added. I need to be able to receive these notifications for the whole filesystem ...
0
votes
4answers
738 views

Trying to create a file in Android: open failed: EROFS (Read-only file system)

This line: final FileOutputStream outputStream = new FileOutputStream(name); results in a FileNotFoundException with the message being /2ozjfFQzwv: open failed: EROFS (Read-only file system) where ...
1
vote
1answer
50 views

Tracking a file over time

My idea is to track a specific file on a file-system over time between two points in time, T1 and T2. The emphasis here lies on looking at a file as a unique entity on a file-system. One that can ...
-1
votes
1answer
57 views

What makes a file into a folder? [closed]

What is the (file system specific) difference between a file and a folder? Why are different methods in java.nio.file.Files required to create the one or the other? createDirectory(..) and ...
0
votes
1answer
55 views

Does Cassandra lock files in the data directory during reads/writes?

I know that snapshots can be taken while Cassandra is online. What this does is create a snapshot sub-directory in each column family directory, and places a copy of the column family inside of it. ...
5
votes
4answers
74 views

Where does python open files to on a mac?

I made a simple python script which creates a text file. The contents of the script are f = open("New", "w") f.close Now I moved the script to the desktop (I'm on a mac) and ran it, and nothing ...
0
votes
0answers
35 views

how are directories implemented in UNIX filesystem?

This question is extension to http://unix.stackexchange.com/questions/18605/how-are-directories-implemented-in-unix-filesystems I'm aiming to implement basic filesystem: After reading inode number ...
-2
votes
1answer
123 views

how to create a file sytem monitor to catch every change made to a file [closed]

I want to create a file system monitor which will notify whenever a change is made to any file on the file system, especially a write, new file creation or rename. I have done research, and found ...
2
votes
3answers
62 views

How to perform filesystem operations in transaction with php?

I am looking for ways to implement filesystem operations using php with transaction support. Like if I am performing operations like move, copy and delete inside a transaction, if one of them fails, ...
0
votes
2answers
67 views

Getting Java Filesystem-Folder onchange event (Like Dropbox)

I want to sync a folder like Dropbox. If in my Folder is changed a file or a folder, I want to get an Event, which starts my synchronisation Class. How can I get such an Event without scanning this ...
0
votes
0answers
43 views

ensure the changes to commit in a Java zip filesystem?

Briefing: I'm developing a system which must grant access to all the files of a project, it has to be an interface to open, upload and modify those files, i decided to store all of them (the files) in ...
1
vote
1answer
60 views

Good Patterns for integrating modern Java systems with file systems

We have a system that is going to send our system a lot of file deliveries. We would prefer to not build a layer on top of the files system that polls and triggers the corresponding process for that ...
2
votes
3answers
281 views

Checking if path on Mainframe FTP server is a file or folder.

I have a Java code that transfers file from FTP on Mainframe to my local system . The problem is how do I tell if the given path is a file or folder ? I cannot use the check for extensions as i don't ...
0
votes
1answer
40 views

How can the different Closed Hashing Variations be implemented in secondary memory?

i don't really know how to put this but, aside from it being implemented in primary memory i.e. heap, how can i implement variation 1,2 or 3 or any of the variations into the secondary memory which is ...
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 ...
1
vote
3answers
91 views

anatomy of a fwrite

I wrote a small program in C FILE *fp = fopen("/tmp/file", "w+"); char *buf = "hello"; fwrite(buf, 1, strlen(buf), fp); for(;;); On a shell I use cat to read the contents, the file is empty as ...
1
vote
1answer
88 views

read from a file which is deleted

I wrote a small program in C where I opened a file successfuly, then called sleep for 20 sec. In that 20 sec I deleted the open file using rm from shell. After sleep the program reads the data ...
6
votes
2answers
301 views

Extracting ISO file using Java

Is there any way to Extract content of ISO file (all directories and files inside) to a give directory in a local path? Specifically using Java in windows environment. is there any library you may ...
4
votes
2answers
170 views

what is file hole and how can it be used? [closed]

To my understanding, holes are perhaps maintained as metadata at inode, but actual disk is not filled with empty zeros. Can someone explain with real life usage examples, where holes in a file can ...
6
votes
4answers
272 views

After how many seconds are file system write buffers typically flushed?

Before overwriting data in a file, I would like to be pretty sure the old data is stored on disk. It's potentially a very big file (multiple GB), so in-place updates are needed. Usually writes will be ...
0
votes
1answer
32 views

Tracking a file by identity on Linux

On OS X, there is an API to create a "bookmark" for a given file on disk, which will track its target even if it is moved or renamed. An OS X application could then serialise the bookmark, store it by ...
2
votes
1answer
59 views

detect file handle conflict in windows

Operations like deleting an opened file cause a file handle conflict. If I need to detect such file handle conflicts, is the filter driver(or minifilter drivers) the only option?
1
vote
0answers
152 views

Java WatchService and file system polling

The Java trail on WatchService states that This API is not designed for indexing a hard drive. Most file system implementations have native support for file change notification. The Watch ...
0
votes
1answer
64 views

file and its clusters (or how does fseek work?) [closed]

I wonder how fseek work on windows file systems. As far as I know a file is somewhat like linked list of clusters (they are probably constant sized) but I do not know if fseek to go to its ...
24
votes
8answers
579 views

Insert bytes into middle of a file (in windows filesystem) without reading entire file (using File Allocation Table)?

I need a way to insert some file clusters into the middle of a file to insert some data. Normally, I would just read the entire file and write it back out again with the changes, but the files are ...
1
vote
2answers
135 views

Resolve a path name with parent directory things without resolving symlinks

Given a path like /a/./b/c/../d, I would like to remove all the "current directory" indicators (i.e., period) and "parent directory" indicators (i.e., ..), giving a/b/d. I could use ...
0
votes
1answer
55 views

How to Safely and Transactionally Replace a File on Linux?

The most naive, worst way I can think of to replace the contents of a file is: f = open('file.txt', 'w') f.write('stuff') f.close() Obviously, if that operation fails at some point before closing, ...
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 ...
1
vote
3answers
583 views

How to get the file separator symbol in standard C/C++ : / or \?

I would like to write a function : inline char separator() { /* SOMETHING */ } that returns the file separator of the system in standard C/C++/C++11 ? (I mean slash or backslash depending on ...
0
votes
1answer
109 views

Titanium : Avoiding saved images to be displayed in gallery

I am using titanium to capture images ( from camera and gallery for both iphone and android ) and i am saving them as jpg's in sd card using file.write(); But i dont want them to be shown in ...
0
votes
3answers
73 views

Displaying Files and Directories and moving them in Java

I want to create an application that moves selected files within the local file system directories to another 'pre-selected location' and back to the directory it came from. I'd like it to be visual ...
0
votes
1answer
107 views

Opened file gets cached in titanium. Cant view replaced file content while app is running

I am facing a slight issue while editing a file. I am saving a file (image) with a certain name on ios using the code below. But the problem is that when i replace the image stored in a file (eg ...
1
vote
0answers
71 views

Volume file paths Windows 7

Working on a project with video files on different external hard drives and the xml they gave me with all the file paths all start with /Volume/name_of_disk/ as they made the xml on a Mac. I'm ...
0
votes
1answer
248 views

file_exists() and file_get_contents() fail on a file wich is on a mounted network drive

Pretty self explanatory. For example, the file (AB.txt) is on both my C drive and my (NFS) mounted W drive. Windows 7 x64 operating system btw. function fileExists($path){ return ...
1
vote
1answer
179 views

Php writing edited script file content cause extra line breaks

In a multilingual site i have two php files that contains php constants. Like define('EMAIL', 'Email'); define('GENDER', 'Gender'); . . . I provide editing of these files from admin side using a ...
1
vote
1answer
56 views

How to change file contents automically?

I am given a binary file (consider it large) and a several binary blobs, which I should insert/replace somewhere in the middle of the file (offsets are known). The same time user may gain access to ...
3
votes
2answers
180 views

How to find out whether a file is currently growing in Java (OS Independent)

I'm trying to find a cross-platform way of reliably telling whether a file has finished being copied (by an external process). Previously, on OSX/Linux I'd simply been checking File file = new ...
2
votes
1answer
82 views

How can I work with a file in ruby without moving it into memory? [closed]

I need to work with a massive file that won't fit into memory, or even if it does, I don't need it all in memory because I only need to seek to and modify a certain portion of it. What's the best way ...
1
vote
1answer
535 views

Displaying pdf file stored in the server and downloading it using php

I have stored .pdf, .doc, .txt files inside a directory in the web server. I am able to display all the files stored inside the directory but the download fails. Each time I click on the hyperlink ...
1
vote
5answers
159 views

Simplest way to get the equivalent of “find .” in python?

What is the simplest way to get the full recursive list of files inside a folder with python? I know about os.walk(), but it seems overkill for just getting the unfiltered list of all files. Is it ...
1
vote
1answer
57 views

Clarification needed about Where I Should Put (Store) My Core Data’s SQLite File?

Yes, I know. This question have been already replied in Where to store the Core Data file? and in Store coredata file outside of documents directory?. @Kendall Helmstetter Gelner and @Matthias Bauch ...
1
vote
3answers
132 views

Uniquely identify files

I'd like to index files in a local database but I do not understand how I can identified each individual file. For example if I store the file path in the database then the entry will no longer be ...
0
votes
3answers
100 views

Finding the directory where file is being executed from?

I want to call opendir() with the argument of the directory the program is being run from. If possible it will be a platform independent way. I'm confused because the accepted answer to a similar ...
-2
votes
2answers
213 views

Is there any difference in file size on 32bit and 64 bit platforms, OS could be any

I would like to display file size on one of my application. Our application most of the unix and windows platforms that to be 32bit and 64bit. Is there any difference in file size on 32bit and 64 bit ...
0
votes
5answers
330 views

How to check whether file exits or not?

I am trying to save contents in file but first I want to search either file does exist or not. But the code I have written, every time it is returning true. String fileName=FNameTextField.getText(); ...

1 2 3 4 5 6